Commit 8f8fe9dd authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

fix: lowercase markets for gql profile cards (#5127)

lowercase markets for gql profile cards
parent 2b279e00
...@@ -100,7 +100,7 @@ export const WalletAssetDisplay = ({ asset, isSellMode }: { asset: WalletAsset; ...@@ -100,7 +100,7 @@ export const WalletAssetDisplay = ({ asset, isSellMode }: { asset: WalletAsset;
borderRadius="4" borderRadius="4"
marginLeft="4" marginLeft="4"
objectFit="cover" objectFit="cover"
src={`/nft/svgs/marketplaces/${market}.svg`} src={`/nft/svgs/marketplaces/${market.toLowerCase()}.svg`}
/> />
) )
})} })}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment