Commit 3cf971f0 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

address truncation in celo rewards table (#2382)

parent 4534c885
...@@ -32,7 +32,7 @@ const AddressEpochRewardsTableItem = ({ item, isLoading }: Props) => { ...@@ -32,7 +32,7 @@ const AddressEpochRewardsTableItem = ({ item, isLoading }: Props) => {
<EpochRewardTypeTag type={ item.type } isLoading={ isLoading }/> <EpochRewardTypeTag type={ item.type } isLoading={ isLoading }/>
</Td> </Td>
<Td verticalAlign="middle"> <Td verticalAlign="middle">
<AddressEntity address={ item.associated_account } isLoading={ isLoading }/> <AddressEntity address={ item.associated_account } isLoading={ isLoading } truncation="constant"/>
</Td> </Td>
<Td verticalAlign="middle" isNumeric> <Td verticalAlign="middle" isNumeric>
<Skeleton isLoaded={ !isLoading } display="flex" alignItems="center" gap={ 2 } justifyContent="flex-end"> <Skeleton isLoaded={ !isLoading } display="flex" alignItems="center" gap={ 2 } justifyContent="flex-end">
......
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