From e05477bca6191030882e8378c0f5e967f4918835 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 15 Aug 2018 09:33:47 -0400 Subject: [PATCH] no need for firefox check on desktop. derp --- src/app/accounts/settings.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/accounts/settings.component.ts b/src/app/accounts/settings.component.ts index 52fc1d24c17..9aae95548a3 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); }