fix: use uiAmountString in token balances component (#15860)

This commit is contained in:
Josh 2021-03-14 21:25:09 -07:00 committed by GitHub
parent 420174d3dd
commit a36d2f2d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export function TokenBalancesCard({ signature }: SignatureProps) {
<BalanceDelta delta={delta} />
</td>
<td>
{balance.uiAmount} {units}
{balance.uiAmountString} {units}
</td>
</tr>
);