diff --git a/apps/browser/src/autofill/background/overlay.background.ts b/apps/browser/src/autofill/background/overlay.background.ts index 245b1414c72..be452428383 100644 --- a/apps/browser/src/autofill/background/overlay.background.ts +++ b/apps/browser/src/autofill/background/overlay.background.ts @@ -605,8 +605,8 @@ export class OverlayBackground implements OverlayBackgroundInterface { globalThis.clearTimeout(this.inlineMenuFadeInTimeout); } - const message = { command: "updateInlineMenuIframePosition", styles: { opacity: "1" } }; this.inlineMenuFadeInTimeout = globalThis.setTimeout(() => { + const message = { command: "updateInlineMenuIframePosition", styles: { opacity: "1" } }; this.inlineMenuButtonPort?.postMessage(message); this.inlineMenuListPort?.postMessage(message); }, 50);