diff --git a/src/contexts/tab-context.tsx b/src/contexts/tab-context.tsx index 3d31ab6..db27fc0 100644 --- a/src/contexts/tab-context.tsx +++ b/src/contexts/tab-context.tsx @@ -193,7 +193,10 @@ export function TabProvider({ children }: TabProviderProps) { folderId: it.folder_id, conversationId: it.conversation_id, agentType: it.agent_type, - title: t("loadingConversation"), + title: + it.conversation_id != null + ? t("loadingConversation") + : t("newConversation"), isPinned: it.is_pinned, })) setTabs(restored)