From 74cccee360936936b864ddefe7796c6ccfc2d335 Mon Sep 17 00:00:00 2001 From: Jonathan Prusik Date: Tue, 3 Dec 2024 16:08:15 -0500 Subject: [PATCH] do not regenerate passwords on every overlay ciphers update (#12226) --- apps/browser/src/autofill/background/overlay.background.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/browser/src/autofill/background/overlay.background.ts b/apps/browser/src/autofill/background/overlay.background.ts index c42d1f7e640..7b80c436798 100644 --- a/apps/browser/src/autofill/background/overlay.background.ts +++ b/apps/browser/src/autofill/background/overlay.background.ts @@ -362,8 +362,6 @@ export class OverlayBackground implements OverlayBackgroundInterface { this.inlineMenuFido2Credentials.clear(); this.storeInlineMenuFido2Credentials$.next(currentTab.id); - await this.generatePassword(); - const ciphersViews = await this.getCipherViews(currentTab, updateAllCipherTypes); for (let cipherIndex = 0; cipherIndex < ciphersViews.length; cipherIndex++) { this.inlineMenuCiphers.set(`inline-menu-cipher-${cipherIndex}`, ciphersViews[cipherIndex]);