From b22cde384a1f81e43a162b3756677da45b449abd Mon Sep 17 00:00:00 2001 From: Miles Blackwood Date: Fri, 2 May 2025 12:25:28 -0400 Subject: [PATCH] Fix status pending check. --- .../src/autofill/background/overlay-notifications.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/autofill/background/overlay-notifications.background.ts b/apps/browser/src/autofill/background/overlay-notifications.background.ts index 83ea7040a00..a6349d9b954 100644 --- a/apps/browser/src/autofill/background/overlay-notifications.background.ts +++ b/apps/browser/src/autofill/background/overlay-notifications.background.ts @@ -517,7 +517,7 @@ export class OverlayNotificationsBackground implements OverlayNotificationsBackg tasks.length > 0 && tasks.find( (task) => - task.status && SecurityTaskStatus.Pending && cipherIds.indexOf(task.cipherId) > -1, + task.status === SecurityTaskStatus.Pending && cipherIds.indexOf(task.cipherId) > -1, ); const cipher = ciphers.find((cipher) => cipher.id === securityTask.cipherId);