diff --git a/apps/app/components/WalletDialog.tsx b/apps/app/components/WalletDialog.tsx index 1f67a33b..5587afb8 100644 --- a/apps/app/components/WalletDialog.tsx +++ b/apps/app/components/WalletDialog.tsx @@ -55,7 +55,10 @@ const WalletDialog: FC = () => { const polkadotJsWallet = sortedWallets.find( (w) => w.extensionName === 'polkadot-js', ) - if (polkadotJsWallet != null) { + if ( + polkadotJsWallet != null && + window.matchMedia('(max-width: 767px)').matches + ) { if ( (window as {SubWallet?: {isSubWallet?: boolean}}).SubWallet ?.isSubWallet === true