fix: marketplace icons on details page (#5091)

This commit is contained in:
Charles Bachmeier 2022-11-04 12:32:30 -07:00 committed by GitHub
parent 7f2bb6c6ae
commit 1242aef466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,5 +26,5 @@ export const getAssetHref = (asset: GenieAsset | WalletAsset, origin?: DetailsOr
}
export const getMarketplaceIcon = (marketplace: string) => {
return `/nft/svgs/marketplaces/${marketplace}.svg`
return `/nft/svgs/marketplaces/${marketplace.toLowerCase()}.svg`
}