We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f803d commit 3afb441Copy full SHA for 3afb441
src/popup/Popup.jsx
@@ -534,7 +534,7 @@ function Popup() {
534
}, [config.themeMode, theme])
535
536
const search = new URLSearchParams(window.location.search)
537
- const popup = search.get('popup') && !isMobile() // manifest v2
+ const popup = !isMobile() && search.get('popup') // manifest v2
538
539
return (
540
<div className={popup === 'true' ? 'container-popup-mode' : 'container-page-mode'}>
0 commit comments