From 20a9abbe196b4c1f0dd01cdf3474f130642994a3 Mon Sep 17 00:00:00 2001 From: Cesar Gonzalez Date: Tue, 17 Oct 2023 15:30:53 -0500 Subject: [PATCH] [PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type (#6600) * [PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type * [PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type --- .../src/platform/popup/browser-popout-window.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/browser/src/platform/popup/browser-popout-window.service.ts b/apps/browser/src/platform/popup/browser-popout-window.service.ts index f72f7bfb3e0..2d661780ce0 100644 --- a/apps/browser/src/platform/popup/browser-popout-window.service.ts +++ b/apps/browser/src/platform/popup/browser-popout-window.service.ts @@ -7,10 +7,10 @@ import { BrowserPopoutWindowService as BrowserPopupWindowServiceInterface } from class BrowserPopoutWindowService implements BrowserPopupWindowServiceInterface { private singleActionPopoutTabIds: Record = {}; private defaultPopoutWindowOptions: chrome.windows.CreateData = { - type: "normal", + type: "popup", focused: true, - width: 500, - height: 800, + width: 380, + height: 630, }; async openUnlockPrompt(senderWindowId: number) {