Skip to content

Commit

Permalink
fix(windows): Chrome folder is shown when no starting URL is provided (
Browse files Browse the repository at this point in the history
  • Loading branch information
going-confetti authored Dec 20, 2024
1 parent 7d9112b commit 7e6fd8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const launchBrowser = async (
`--proxy-server=http://localhost:${appSettings.proxy.port}`,
`--ignore-certificate-errors-spki-list=${certificateSPKI}`,
disableChromeOptimizations,
url ?? '',
url?.trim() || 'about:blank',
],
onExit: sendBrowserClosedEvent,
})
Expand Down

0 comments on commit 7e6fd8a

Please sign in to comment.