From 726b19c8bbe455c649ec1384c9f62388725169bd Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 18 Nov 2025 17:49:34 -0300 Subject: [PATCH] fixed conversation be selected even though its a new conversation --- frontend/components/navigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/navigation.tsx b/frontend/components/navigation.tsx index a33beb72..6fcfa56b 100644 --- a/frontend/components/navigation.tsx +++ b/frontend/components/navigation.tsx @@ -248,7 +248,7 @@ export function Navigation({ ); } - if (isOnChatPage) { + if (isOnChatPage && !isConversationsLoading) { if (conversations.length === 0 && !placeholderConversation) { handleNewConversation(); } else if (activeConvo) {