Skip to content

Commit

Permalink
Crossorigin for NFT previews
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Dec 12, 2024
1 parent e032811 commit a1876b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/nfts/NftPreviewModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const NftPreviewModal = ({ nft, onClose }: { nft?: SafeCollectibleResponse; onCl
{nft && (
<div className={css.wrapper}>
<div className={css.imageWrapper} onClick={onClose}>
<img src={nft.imageUri} alt={nft.name} />
<img src={nft.imageUri} alt={nft.name} crossOrigin="anonymous" />

<CircularProgress className={css.loader} />
</div>
Expand Down

0 comments on commit a1876b9

Please sign in to comment.