Skip to content

Commit

Permalink
fix(core): opt out telemetry condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Mar 27, 2024
1 parent d4c7d58 commit 0698b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/core/src/telemetry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Telemetry() {
persistence: 'localStorage',
});
}
if (settings.enableTelemetry !== false) {
if (settings.enableTelemetry === false) {
mixpanel.opt_out_tracking();
}
}, [settings.enableTelemetry]);
Expand Down

0 comments on commit 0698b72

Please sign in to comment.