f2a63668 broke placeholder tiles

This commit is contained in:
infinite-persistence 2022-04-20 23:38:33 +08:00
parent 8e2ac343b0
commit d84d11bc24
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -153,10 +153,11 @@ function ClaimPreviewTile(props: Props) {
shouldHide = true; shouldHide = true;
} else { } else {
shouldHide = shouldHide =
banState.blacklisted || !placeholder &&
banState.filtered || (banState.blacklisted ||
(!showHiddenByUser && (banState.muted || banState.blocked)) || banState.filtered ||
(isAbandoned && !showUnresolvedClaims); (!showHiddenByUser && (banState.muted || banState.blocked)) ||
(isAbandoned && !showUnresolvedClaims));
} }
if (shouldHide || (isLivestream && !showNoSourceClaims)) { if (shouldHide || (isLivestream && !showNoSourceClaims)) {