Skip to content

Commit

Permalink
add intl format (#3041)
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-sven authored Dec 11, 2024
1 parent c966ff0 commit 56e4340
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function AssetRowItem({ row, isWalletOwner, onOpenTransferModal }

<TableCell>
<ListItemText
primary={formatCoin(Number(row.balance), row.decimals, row.decimals)}
primary={Intl.NumberFormat('en-us').format(Number(formatCoin(Number(row.balance), row.decimals, row.decimals)))}
primaryTypographyProps={{
typography: 'body2',
sx: {
Expand Down

0 comments on commit 56e4340

Please sign in to comment.