Question: Im receiving this error when deploying my app. Would you happen to know what it can be? Upvote Error: here is my code below in
Im receiving this error when deploying my app. Would you happen to know what it can be? Upvote
Error:

here is my code below in Javascript:
--------------------------------------------------
export const NFTCard = ({ nft }) => {
return (
className="h-128 w-full rounded-t-md object-cover"
src={nft.media[0].gateway}
>
{nft.title}
Id: {nft.id.tokenId.substr(nft.id.tokenId.length - 4)}
{`${nft.contract.address.substr(
0,
4
)}...${nft.contract.address.substr(
nft.contract.address.length - 4
)}`}
{nft.description?.substr(0, 150)}
)
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
