diff --git a/screens/ConversationList.tsx b/screens/ConversationList.tsx index 5835b9d06..3a6e6d833 100644 --- a/screens/ConversationList.tsx +++ b/screens/ConversationList.tsx @@ -103,7 +103,18 @@ function ConversationList({ navigation, route, searchBarRef }: Props) { const { likelyNotSpam } = sortRequestsBySpamScore( sortedConversationsWithPreview.conversationsRequests ); - const showChatNullState = likelyNotSpam.length === 0 && !searchQuery; + + const conversations = useChatStore( + (s) => s.sortedConversationsWithPreview.conversationsInbox + ); + const conversationsRequests = useChatStore( + (s) => s.sortedConversationsWithPreview.conversationsRequests + ); + + const showChatNullState = + conversations.length === 0 && + conversationsRequests.length === 0 && + !searchQuery; useEffect(() => { if (!initialLoadDoneOnce) {