Skip to content

Commit 01e5d49

Browse files
authored
fix: shielded balance comma separator (#2170)
1 parent 51ac42f commit 01e5d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/namadillo/src/App/Masp/ShieldedFungibleTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const ShieldedFungibleTable = ({
6060
key={`balance-${originalAddress}`}
6161
className="flex flex-col text-right leading-tight"
6262
>
63-
{amount.toString()}
63+
<TokenCurrency symbol={asset.symbol} amount={amount} />
6464
{dollar && (
6565
<FiatCurrency
6666
className="text-neutral-600 text-sm"

0 commit comments

Comments
 (0)