From 2690dc3722f7fea21c4f5f4d375f58caaf611b47 Mon Sep 17 00:00:00 2001 From: Nathaniel Parke Date: Thu, 20 May 2021 11:42:47 +0800 Subject: [PATCH] Customize --- src/components/SendDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;