diff --git a/apps/browser/src/autofill/background/notification.background.ts b/apps/browser/src/autofill/background/notification.background.ts index c6f48a45378..7c536be8121 100644 --- a/apps/browser/src/autofill/background/notification.background.ts +++ b/apps/browser/src/autofill/background/notification.background.ts @@ -402,8 +402,9 @@ export default class NotificationBackground { const passwordChangeUri = await new TemporaryNotificationChangeLoginService().getChangePasswordUrl(cipher); - const addLoginIsEnabled = await this.getEnableAddedLoginPrompt(); - const wasVaultLocked = AuthenticationStatus.Locked && addLoginIsEnabled; + const authStatus = await this.getAuthStatus(); + + const wasVaultLocked = authStatus === AuthenticationStatus.Locked; const organization = await firstValueFrom( this.organizationService