I am building a marketplace just like opensea, where I want to trade my selected NFTs. On my localhost, when I try to click on anything that requires web3, I am always reverted with a "
transaction may fail" Check this image out:

On my inspect console, I am getting an error which says:
The "undefined '๐'" is present in the source code:
import { IoMdSnow } from 'react-icons/io'
import { AiOutlineHeart } from 'react-icons/ai'
const style = {
topBar: `bg-[#303339] p-2 rounded-t-lg border-[#151c22] border`,
topBarContent: `flex items-center`,
likesCounter: `flex-1 flex items-center justify-end`,
}
const NFTImage = ({ selectedNft }) => {
return (
<div>
<div className={style.topBar}>
<div className={style.topBarContent}>
<IoMdSnow />
<div className={style.likesCounter}>
<AiOutlineHeart />
2.3K
</div>
</div>
</div>
<div>
{console.log(selectedNft, '๐')}
<img src={selectedNft?.image} />
</div>
</div>
)
}
export default NFTImage
Does anyone knows how to get past this error?