diff --git a/src/app/accounts/settings.component.ts b/src/app/accounts/settings.component.ts index 52fc1d24c1..9aae95548a 100644 --- a/src/app/accounts/settings.component.ts +++ b/src/app/accounts/settings.component.ts @@ -83,7 +83,7 @@ export class SettingsComponent implements OnInit { this.theme = await this.storageService.get(ConstantsService.themeKey); const disableGa = await this.storageService.get(ConstantsService.disableGaKey); - const disableGaByDefault = this.platformUtilsService.isFirefox() || this.platformUtilsService.isMacAppStore(); + const disableGaByDefault = this.platformUtilsService.isMacAppStore(); this.disableGa = disableGa || (disableGa == null && disableGaByDefault); }