fix: correct decimal places in network params table (#416)
This commit is contained in:
parent
ef18ac8483
commit
29c3ed5180
@ -48,7 +48,7 @@ export const renderRow = ({
|
||||
) : isNaN(Number(value)) ? (
|
||||
value
|
||||
) : BIG_NUMBER_PARAMS.includes(key) ? (
|
||||
addDecimalsFormatNumber(Number(value), 4)
|
||||
addDecimalsFormatNumber(Number(value), 18)
|
||||
) : (
|
||||
formatNumber(Number(value), 4)
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user