no need for firefox check on desktop. derp

This commit is contained in:
Kyle Spearrin 2018-08-15 09:33:47 -04:00
parent 94b6b6645d
commit e05477bca6
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ export class SettingsComponent implements OnInit {
this.theme = await this.storageService.get<string>(ConstantsService.themeKey);
const disableGa = await this.storageService.get<boolean>(ConstantsService.disableGaKey);
const disableGaByDefault = this.platformUtilsService.isFirefox() || this.platformUtilsService.isMacAppStore();
const disableGaByDefault = this.platformUtilsService.isMacAppStore();
this.disableGa = disableGa || (disableGa == null && disableGaByDefault);
}