diff --git a/apps/browser/src/autofill/overlay/inline-menu/abstractions/autofill-inline-menu-container.ts b/apps/browser/src/autofill/overlay/inline-menu/abstractions/autofill-inline-menu-container.ts index 36952c7710a..ab3b429dbfa 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/abstractions/autofill-inline-menu-container.ts +++ b/apps/browser/src/autofill/overlay/inline-menu/abstractions/autofill-inline-menu-container.ts @@ -8,14 +8,14 @@ type AutofillInlineMenuContainerMessage = { }; export type InitAutofillInlineMenuElementMessage = AutofillInlineMenuContainerMessage & { - iframeUrl?: string; - pageTitle?: string; - authStatus?: AuthenticationStatus; - styleSheetUrl?: string; - theme?: string; - translations?: Record; - ciphers?: InlineMenuCipherData[]; - portName?: string; + iframeUrl: string; + pageTitle: string; + authStatus: AuthenticationStatus; + styleSheetUrl: string; + theme: string; + translations: Record; + ciphers: InlineMenuCipherData[] | null; + portName: string; }; export type AutofillInlineMenuContainerWindowMessageHandlers = {