fix: remove crypto amount rounding

This commit is contained in:
José Oliveira 2021-04-13 17:56:21 +01:00
parent 58b74a6425
commit 452eafaba0

View file

@ -130,7 +130,7 @@ const Transactions = () => {
textAlign: 'right', textAlign: 'right',
size: 'sm', size: 'sm',
view: it => view: it =>
`${toUnit(new BigNumber(it.cryptoAtoms), it.cryptoCode).toFormat(5)} ${ `${toUnit(new BigNumber(it.cryptoAtoms), it.cryptoCode)} ${
it.cryptoCode it.cryptoCode
}` }`
}, },