diff --git a/src/popup/app/settings/options.component.ts b/src/popup/app/settings/options.component.ts index 49c858ec6d..9f0e13194f 100644 --- a/src/popup/app/settings/options.component.ts +++ b/src/popup/app/settings/options.component.ts @@ -41,7 +41,7 @@ export class OptionsController { const disableGa = await this.storageService.get( this.constantsService.disableGaKey); - this.disableGa = disableGa || (this.platformUtilsService.isFirefox() && disableGa === undefined); + this.disableGa = disableGa || (this.platformUtilsService.isFirefox() && disableGa == null); this.disableAddLoginNotification = await this.storageService.get( this.constantsService.disableAddLoginNotificationKey);