Commit d2a97c62 authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

fix: always show listed % (#5497)

Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent 6aa999f7
......@@ -321,7 +321,7 @@ const StatsRow = ({ stats, isMobile, ...props }: { stats: GenieCollection; isMob
</StatsItem>
) : null}
{stats.stats?.total_listings && stats.standard !== TokenType.ERC1155 && listedPercentageStr > 0 ? (
{stats.stats?.total_listings && stats.standard !== TokenType.ERC1155 ? (
<StatsItem label="Listed" shouldHide={isMobile ?? false}>
{listedPercentageStr}%
</StatsItem>
......
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