From 8bfa02eeea465c6eada8a7c4e07c617da9c4f360 Mon Sep 17 00:00:00 2001 From: Cesar Gonzalez Date: Tue, 11 Jun 2024 08:55:59 -0500 Subject: [PATCH] [PM-5189] Correcting typing information --- .../autofill-inline-menu-container.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 36952c7710..ab3b429dbf 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 = {