Skip to content

Commit

Permalink
feat : modified elevate nft page url
Browse files Browse the repository at this point in the history
  • Loading branch information
surajhub255 committed Nov 2, 2024
1 parent c50e02d commit c23d982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/hotNftCardElevate.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const HotNftCardElevate = ({ nft }) => {

return (
<div style={{ position: "relative", display: "inline-block" }}>
<Link href={`/nfts/${nft.id}`}>
<Link href={`/nfts/${nft.name.toLowerCase().replace(/\s+/g, '-')}`}>
<div
style={{
width: "330px",
Expand Down
2 changes: 1 addition & 1 deletion src/components/mostLovedCardelElevate.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const MostLovedCardElevate = ({ nft }) => {

return (
<div style={{ position: "relative", display: "inline-block" }} >
<Link href={`/collection/${nft.id}`}>
<Link href={`/collection/${nft.name.toLowerCase().replace(/\s+/g, '-')}`}>
<div
style={{
width: "330px",
Expand Down

0 comments on commit c23d982

Please sign in to comment.