rename to

This commit is contained in:
Hailey
2025-07-29 10:01:47 -07:00
parent 230d1cc263
commit 82cf9210a3
+2 -2
View File
@@ -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 (
<Layout.Screen>
<Header newChatControl={newChatControl} />