diff --git a/src/background/notification.background.ts b/src/background/notification.background.ts index 9dec74e248..90311f4e73 100644 --- a/src/background/notification.background.ts +++ b/src/background/notification.background.ts @@ -192,7 +192,7 @@ export default class NotificationBackground { } if (await this.vaultTimeoutService.isLocked()) { - if (!(await this.allowPersonalOwnership())) { + if (!await this.allowPersonalOwnership()) { return; } @@ -210,7 +210,7 @@ export default class NotificationBackground { return; } - if (!(await this.allowPersonalOwnership())) { + if (!await this.allowPersonalOwnership()) { return; }