Skip to content

Commit

Permalink
use label for native token balance
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Oct 24, 2024
1 parent 33c0c64 commit b39ae45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/features/EthWallet/hooks/useEvmChainSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ export function useEvmChainSelection(evmChains: EvmChains) {
const balance = `${balanceStr} ${selectedEvmCurrency.coinDenom}`;
setEvmBalance(balance);
} else {
console.log("not an erc20 withdrawer service");
setEvmBalance(userAccount.balance);
const balance = `${userAccount.balance} ${selectedEvmCurrency.coinDenom}`;
setEvmBalance(balance);
}
setIsLoadingEvmBalance(false);
} catch (error) {
Expand Down

0 comments on commit b39ae45

Please sign in to comment.