diff --git a/src/components/SendDialog.js b/src/components/SendDialog.js index a73c46b..3cc94e9 100644 --- a/src/components/SendDialog.js +++ b/src/components/SendDialog.js @@ -97,7 +97,7 @@ export default function SendDialog({ open, onClose, publicKey, balanceInfo }) { const tabs = [ , ]; - if (!DISABLED_ERC20_MINTS.has(mint.toString())) { + if (!DISABLED_ERC20_MINTS.has(mint.toString()) || localStorage.getItem('sollet-private')) { tabs.push(erc20Tab); } return tabs;