Commit 9ab4d952 authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

fix: use lowercase for gray market icons (#5370)

use lowercase
Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent 48883cce
......@@ -191,7 +191,10 @@ export const MarketplaceRow = ({ marketplace, floorInEth, listings }: Marketplac
return (
<>
<TableElement>
<MarketplaceIcon src={`/nft/svgs/marketplaces/${marketplace}-grey.svg`} alt={`${marketplace} icon`} />
<MarketplaceIcon
src={`/nft/svgs/marketplaces/${marketplace.toLowerCase()}-grey.svg`}
alt={`${marketplace} icon`}
/>
<FirstColumnTextWrapper>
<ThemedText.BodySmall color="textSecondary">{marketplace}</ThemedText.BodySmall>
</FirstColumnTextWrapper>
......
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