Revert "Fix continuous reaction fetch in incognito"
This reverts commit ff059c58fd
.
This commit is contained in:
parent
47b594107a
commit
08548916df
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ function CommentList(props: Props) {
|
||||||
} else {
|
} else {
|
||||||
idsForReactionFetch = allCommentIds.filter((commentId) => {
|
idsForReactionFetch = allCommentIds.filter((commentId) => {
|
||||||
const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId;
|
const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId;
|
||||||
return !othersReactsById[key] || (activeChannelId && !myReactsByCommentId[key]);
|
return !othersReactsById[key] || !myReactsByCommentId[key];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue