diff --git a/lib/selectors/thread-selectors.js b/lib/selectors/thread-selectors.js --- a/lib/selectors/thread-selectors.js +++ b/lib/selectors/thread-selectors.js @@ -250,7 +250,9 @@ Object.entries(threadInfos) .filter( ([, threadInfo]) => - !!threadInfo.thick && !!threadInfo.currentUser.unread, + threadInHomeChatList(threadInfo) && + !!threadInfo.thick && + !!threadInfo.currentUser.unread, ) .map(([id]) => id), ); @@ -263,7 +265,9 @@ Object.entries(threadInfos) .filter( ([, threadInfo]) => - !!threadInfo.farcaster && !!threadInfo.currentUser.unread, + threadInHomeChatList(threadInfo) && + !!threadInfo.farcaster && + !!threadInfo.currentUser.unread, ) .map(([id]) => id), );