We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82ee50b commit 34e8c02Copy full SHA for 34e8c02
app/src/ui/lease721/profile/collections/Collections.tsx
@@ -32,7 +32,7 @@ export const Collections: React.FC<CollectionsProps> = ({ className }) => {
32
{ERC721Context.nftsByWallet.map((nfts) => (
33
<>
34
<Typography.Headline3>{nfts[0].name}</Typography.Headline3>
35
- <Typography.Text>{nfts[0].tokenAddress}</Typography.Text>
+ <Typography.Text>{nfts[0].tokenAddress.toJSON()}</Typography.Text>
36
<Grid.Row>
37
{nfts.map((nft) => (
38
<Grid.Col key={nft.tokenId} lg={2} xs={6} className={styles["collections__grid-item"]}>
0 commit comments