Skip to content

Commit

Permalink
[PM-4366] Update popout windows to open as a popup window type rath…
Browse files Browse the repository at this point in the history
…er than a `normal` window type
  • Loading branch information
Cesar Gonzalez committed Oct 16, 2023
1 parent 2dc94ed commit e2a465e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { BrowserPopoutWindowService as BrowserPopupWindowServiceInterface } from
class BrowserPopoutWindowService implements BrowserPopupWindowServiceInterface {
private singleActionPopoutTabIds: Record<string, number> = {};
private defaultPopoutWindowOptions: chrome.windows.CreateData = {
type: "normal",
type: "popup",
focused: true,
width: 500,
height: 800,
width: 375,
height: 628,
};

async openUnlockPrompt(senderWindowId: number) {
Expand Down

0 comments on commit e2a465e

Please sign in to comment.