diff --git a/frontend/src/Navigation.tsx b/frontend/src/Navigation.tsx
index 31a27178..59ef4af7 100644
--- a/frontend/src/Navigation.tsx
+++ b/frontend/src/Navigation.tsx
@@ -232,19 +232,21 @@ export default function Navigation({ navOpen, setNavOpen }: NavigationProps) {
New Chat
-
- {conversations?.map((conversation) => (
- handleConversationClick(id)}
- onDeleteConversation={(id) => handleDeleteConversation(id)}
- onSave={(conversation) => updateConversationName(conversation)}
- />
- ))}
-
+ {conversations && (
+
+
Chats
+ {conversations?.map((conversation) => (
+
handleConversationClick(id)}
+ onDeleteConversation={(id) => handleDeleteConversation(id)}
+ onSave={(conversation) => updateConversationName(conversation)}
+ />
+ ))}
+
+ )}
-