Commit 58005d81 authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

fix: broken Details links (#4729)

fix broken Details links
Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent b0381c58
...@@ -99,7 +99,7 @@ const ActivityRow = ({ event, index, current }: { event: ActivityEvent; index: n ...@@ -99,7 +99,7 @@ const ActivityRow = ({ event, index, current }: { event: ActivityEvent; index: n
onClick={(e) => { onClick={(e) => {
e.preventDefault() e.preventDefault()
e.stopPropagation() e.stopPropagation()
navigate(`/nft/asset/${event.collectionAddress}/${event.tokenId}?origin=explore`) navigate(`/nfts/asset/${event.collectionAddress}/${event.tokenId}?origin=explore`)
}} }}
> >
<Box as="img" src={event.tokenMetadata?.imageUrl} borderRadius="12" marginRight="8" width="40" height="40" /> <Box as="img" src={event.tokenMetadata?.imageUrl} borderRadius="12" marginRight="8" width="40" height="40" />
......
...@@ -314,7 +314,7 @@ const Asset = () => { ...@@ -314,7 +314,7 @@ const Asset = () => {
</a> </a>
)} )}
<Link to={`/collection/${asset.address}`} style={{ textDecoration: 'none' }}> <Link to={`/nfts/collection/${asset.address}`} style={{ textDecoration: 'none' }}>
<CollectionProfile <CollectionProfile
label="Collection" label="Collection"
avatarUrl={collection.collectionImageUrl} avatarUrl={collection.collectionImageUrl}
......
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