Carousel: don't set unseen unless it's explicitly false
(backwards-compat)
This commit is contained in:
parent
8f3c0a1071
commit
e2b6a7af84
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ const FeedCarousel = () => {
|
||||||
if (avatars.length > 0) {
|
if (avatars.length > 0) {
|
||||||
setSeenAccountIds(
|
setSeenAccountIds(
|
||||||
avatars
|
avatars
|
||||||
.filter((avatar) => avatar.seen)
|
.filter((avatar) => avatar.seen !== false)
|
||||||
.map((avatar) => avatar.account_id),
|
.map((avatar) => avatar.account_id),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue