Skip to content

Commit

Permalink
Update TokensTable.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzwfu committed Dec 18, 2024
1 parent 17a74b1 commit 0e58cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connect-sdk/src/components/TokensTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Tokens({
<span className="table-grid__subtitle">{token?.balance?.toFixed(6)} {token.symbol}</span>
</td>
<td>
<span className="table-grid__subtitle">{token?.exchange?.usdBalanceValue.toFixed(2) ?? '-'}</span>
<span className="table-grid__subtitle">{token?.exchange?.usdBalanceValue?.toFixed(2) ?? '-'}</span>
</td>
<td>
<div className="table-grid__actions">
Expand Down

0 comments on commit 0e58cc1

Please sign in to comment.