diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx index d4bb7cd758..3454464648 100644 --- a/src/screens/Messages/ChatList.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -231,11 +231,11 @@ export function MessagesScreenInner({navigation, route}: Props) { // NOTE(APiligrim) // Show empty state only if there are no conversations at all - const actualConversations = conversations.filter( + const activeConversations = conversations.filter( item => item.type === 'CONVERSATION', ) - if (actualConversations.length === 0) { + if (activeConversations.length === 0) { return (