Skip to content

Commit

Permalink
address truncation in celo rewards table (#2382)
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev authored Nov 11, 2024
1 parent 4534c88 commit 3cf971f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ui/address/epochRewards/AddressEpochRewardsTableItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const AddressEpochRewardsTableItem = ({ item, isLoading }: Props) => {
<EpochRewardTypeTag type={ item.type } isLoading={ isLoading }/>
</Td>
<Td verticalAlign="middle">
<AddressEntity address={ item.associated_account } isLoading={ isLoading }/>
<AddressEntity address={ item.associated_account } isLoading={ isLoading } truncation="constant"/>
</Td>
<Td verticalAlign="middle" isNumeric>
<Skeleton isLoaded={ !isLoading } display="flex" alignItems="center" gap={ 2 } justifyContent="flex-end">
Expand Down

0 comments on commit 3cf971f

Please sign in to comment.