Skip to content

Commit 34e8c02

Browse files
committed
fix: EvmAddress child error
1 parent 82ee50b commit 34e8c02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/ui/lease721/profile/collections/Collections.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const Collections: React.FC<CollectionsProps> = ({ className }) => {
3232
{ERC721Context.nftsByWallet.map((nfts) => (
3333
<>
3434
<Typography.Headline3>{nfts[0].name}</Typography.Headline3>
35-
<Typography.Text>{nfts[0].tokenAddress}</Typography.Text>
35+
<Typography.Text>{nfts[0].tokenAddress.toJSON()}</Typography.Text>
3636
<Grid.Row>
3737
{nfts.map((nft) => (
3838
<Grid.Col key={nft.tokenId} lg={2} xs={6} className={styles["collections__grid-item"]}>

0 commit comments

Comments
 (0)