Skip to content

Commit

Permalink
fix: don't show balance of allTON
Browse files Browse the repository at this point in the history
  • Loading branch information
trung2891 committed Sep 12, 2024
1 parent 4c1b44a commit 13a5985
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hooks/useLoadToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ async function loadNativeBalance(
.filter(
(coin) =>
tokenMap[coin.denom] ||
[...Object.values(OsmosisTokenDenom[Environment.Staging])].includes(
coin.denom
)
[...Object.values(OsmosisTokenDenom[env])].includes(coin.denom)
)
.map((coin) => [coin.denom, coin.amount]);
Object.assign(amountDetails, Object.fromEntries(tokensAmount));
Expand Down

0 comments on commit 13a5985

Please sign in to comment.