From 4f8b3e41bfcf9baef231d1dac34341c4cce5646c Mon Sep 17 00:00:00 2001 From: sahar-fehri Date: Wed, 15 Jan 2025 16:40:25 +0100 Subject: [PATCH] fix: tokens list to display with hideTokensWithoutBalance setting --- app/components/UI/Tokens/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/UI/Tokens/index.tsx b/app/components/UI/Tokens/index.tsx index c386fbd714c..0e8510e8fc9 100644 --- a/app/components/UI/Tokens/index.tsx +++ b/app/components/UI/Tokens/index.tsx @@ -178,7 +178,7 @@ const Tokens: React.FC = ({ tokens }) => { const balance = multiChainTokenBalances?.[curToken.address as Hex] || curToken.balance; - return !isZero(balance) || curToken.isStaked; + return curToken.isNative || !isZero(balance) || curToken.isStaked; }); } } else {