Skip to content

Commit

Permalink
fix(tangle-dapp): Use proper balance for account summary card (#2209) (
Browse files Browse the repository at this point in the history
  • Loading branch information
yurixander authored Apr 10, 2024
1 parent 2431cf3 commit 44be390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/tangle-dapp/components/account/Balance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { formatTokenBalance } from '../../utils/polkadot';
import { InfoIconWithTooltip } from '..';

const Balance: FC = () => {
const { transferrable: balance } = useBalances();
const { free: balance } = useBalances();
const { nativeTokenSymbol } = useNetworkStore();

const formattedBalance =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const BalancesTableContainer: FC = () => {
<HeaderCell title="Asset" />

<AssetCell
title="Free Balance"
title="Transferrable Balance"
tooltip="The amount of tokens you can freely transfer right now. These tokens are not subject to any limitations."
/>

Expand Down

0 comments on commit 44be390

Please sign in to comment.