Commit fdf511e2 authored by Jordan Frankfurt's avatar Jordan Frankfurt Committed by GitHub

fix(1155): don't show unique owners on collection page (#5218)

parent 99e491c4
...@@ -315,7 +315,8 @@ const StatsRow = ({ stats, isMobile, ...props }: { stats: GenieCollection; isMob ...@@ -315,7 +315,8 @@ const StatsRow = ({ stats, isMobile, ...props }: { stats: GenieCollection; isMob
{totalSupplyStr} {totalSupplyStr}
</StatsItem> </StatsItem>
) : null} ) : null}
{uniqueOwnersPercentage ? (
{Boolean(uniqueOwnersPercentage && stats.standard !== TokenType.ERC1155) ? (
<StatsItem label="Unique owners" shouldHide={isMobile ?? false}> <StatsItem label="Unique owners" shouldHide={isMobile ?? false}>
{uniqueOwnersPercentage}% {uniqueOwnersPercentage}%
</StatsItem> </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