Skip to content

Commit

Permalink
Revert "fix: NFT dialog not displaying OG WUD BURN collection (#1191)"
Browse files Browse the repository at this point in the history
This reverts commit e3a5bb9.
  • Loading branch information
UrbanWill committed Oct 18, 2024
1 parent 4e9552d commit 9b6892a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/portal/src/routes/portfolio/collectibles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ const NftCard = ({ nft }: { nft: Nft }) => {
overline={nft.collection?.name}
media={
<MediaDialog.Player
src={Maybe.of(nft.media.url).mapOrUndefined(x => toIpfsCompatibleUrl(x, undefined, nft))}
type={(nft.media.mimeType?.split('/').at(0) as any) ?? 'image'}
src={Maybe.of(nft.media.url).mapOrUndefined(toIpfsCompatibleUrl)}
type={nft.media.mimeType?.split('/').at(0) as any}
/>
}
content={
Expand Down

0 comments on commit 9b6892a

Please sign in to comment.