Merge pull request #680 from josepfo/fix/dont-round-crypto-amount-transactions

fix: remove crypto amount rounding
This commit is contained in:
Rafael Taranto 2021-04-30 17:52:53 +01:00 committed by GitHub
commit 41f349ffeb

View file

@ -126,11 +126,11 @@ const Transactions = () => {
},
{
header: 'Crypto',
width: 144,
width: 150,
textAlign: 'right',
size: 'sm',
view: it =>
`${toUnit(new BigNumber(it.cryptoAtoms), it.cryptoCode).toFormat(5)} ${
`${toUnit(new BigNumber(it.cryptoAtoms), it.cryptoCode)} ${
it.cryptoCode
}`
},