Commit 3b8c6a27 authored by isstuev's avatar isstuev

fix decimals

parent bb6a0843
...@@ -24,7 +24,7 @@ const TxDetailsTokenTransfer = ({ token, total, to, from }: Props) => { ...@@ -24,7 +24,7 @@ const TxDetailsTokenTransfer = ({ token, total, to, from }: Props) => {
return ( return (
<Flex flexWrap="wrap" columnGap={ 3 } rowGap={ 2 }> <Flex flexWrap="wrap" columnGap={ 3 } rowGap={ 2 }>
<Text fontWeight={ 500 } as="span">For:{ space } <Text fontWeight={ 500 } as="span">For:{ space }
<CurrencyValue value={ payload.value } exchangeRate={ token.exchange_rate } fontWeight={ 600 }/> <CurrencyValue value={ payload.value } exchangeRate={ token.exchange_rate } fontWeight={ 600 } decimals={ payload.decimals }/>
</Text> </Text>
<TokenSnippet <TokenSnippet
symbol={ trimTokenSymbol(token.symbol) } symbol={ trimTokenSymbol(token.symbol) }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment