f2a63668
broke placeholder tiles
This commit is contained in:
parent
8e2ac343b0
commit
d84d11bc24
1 changed files with 5 additions and 4 deletions
|
@ -153,10 +153,11 @@ function ClaimPreviewTile(props: Props) {
|
|||
shouldHide = true;
|
||||
} else {
|
||||
shouldHide =
|
||||
banState.blacklisted ||
|
||||
banState.filtered ||
|
||||
(!showHiddenByUser && (banState.muted || banState.blocked)) ||
|
||||
(isAbandoned && !showUnresolvedClaims);
|
||||
!placeholder &&
|
||||
(banState.blacklisted ||
|
||||
banState.filtered ||
|
||||
(!showHiddenByUser && (banState.muted || banState.blocked)) ||
|
||||
(isAbandoned && !showUnresolvedClaims));
|
||||
}
|
||||
|
||||
if (shouldHide || (isLivestream && !showNoSourceClaims)) {
|
||||
|
|
Loading…
Reference in a new issue