diff --git a/explorer/src/components/common/NFTArt.tsx b/explorer/src/components/common/NFTArt.tsx index b7feaa64f..da86b1aeb 100644 --- a/explorer/src/components/common/NFTArt.tsx +++ b/explorer/src/components/common/NFTArt.tsx @@ -40,7 +40,7 @@ const ViewOriginalArtContentLink = ({ src }: { src: string }) => { VIEW ORIGINAL ); -} +}; const CachedImageContent = ({ uri }: { uri?: string }) => { const [isLoading, setIsLoading] = useState(true); @@ -93,9 +93,7 @@ const CachedImageContent = ({ uri }: { uri?: string }) => { setShowError(true); }} /> - {uri && ( - - )} + {uri && } )} @@ -139,7 +137,7 @@ const VideoArtContent = ({ const content = likelyVideo && - likelyVideo.startsWith("https://watch.videodelivery.net/") ? ( + likelyVideo.startsWith("https://watch.videodelivery.net/") ? (
playerRef(e)} @@ -156,7 +154,9 @@ const VideoArtContent = ({ autoplay={true} muted={true} /> - +
) : (
@@ -182,7 +182,7 @@ const VideoArtContent = ({ )}
- ) + ); return content; }; @@ -226,9 +226,7 @@ const HTMLContent = ({ setShowError(true); }} > - {htmlURL && ( - - )} + {htmlURL && } )}