Skip to content

Commit

Permalink
fix: tokens list to display with hideTokensWithoutBalance setting
Browse files Browse the repository at this point in the history
  • Loading branch information
sahar-fehri committed Jan 15, 2025
1 parent 4e7a190 commit 4f8b3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/UI/Tokens/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Tokens: React.FC<TokensI> = ({ tokens }) => {
const balance =
multiChainTokenBalances?.[curToken.address as Hex] ||
curToken.balance;
return !isZero(balance) || curToken.isStaked;
return curToken.isNative || !isZero(balance) || curToken.isStaked;
});
}
} else {
Expand Down

0 comments on commit 4f8b3e4

Please sign in to comment.