Skip to content

Commit

Permalink
Merge pull request #338 from oasisprotocol/mz/tokens
Browse files Browse the repository at this point in the history
Show contract address in erc tokens table
  • Loading branch information
buberdds authored Apr 27, 2023
2 parents 37226ec + b98884d commit 57be353
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/pages/AccountDetailsPage/TokensCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ export const TokensCard: FC<TokensCardProps> = ({ type }) => {
},
{
content: (
<Box id={item.token_contract_addr}>
<Typography variant="mono">
<CopyToClipboard value={item.token_contract_addr} />
<Box id={item.token_contract_addr} sx={{ display: 'flex', alignContent: 'center' }}>
<Typography variant="mono" fontWeight={400}>
{item.token_contract_addr}
</Typography>
<CopyToClipboard value={item.token_contract_addr} />
</Box>
),
key: 'hash',
Expand Down

0 comments on commit 57be353

Please sign in to comment.