Skip to content

Commit a1235f3

Browse files
committed
Another precision fix
1 parent e6f2dd2 commit a1235f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TokenGridView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export function TokenGridView({ tokens, actionHandlers }: TokenGridViewProps) {
135135
<NumberFormat
136136
value={fromMojos(token.balance, token.precision)}
137137
minimumFractionDigits={0}
138-
maximumFractionDigits={3}
138+
maximumFractionDigits={token.precision}
139139
/>{' '}
140140
{token.ticker ?? ''}
141141
</div>

0 commit comments

Comments
 (0)