diff --git a/frontend/src/Navigation.tsx b/frontend/src/Navigation.tsx
index 7133dd69..d3df8b44 100644
--- a/frontend/src/Navigation.tsx
+++ b/frontend/src/Navigation.tsx
@@ -215,45 +215,49 @@ export default function Navigation({ navOpen, setNavOpen }: NavigationProps) {
/>
- {
- dispatch(setConversation([]));
- dispatch(
- updateConversationId({
- query: { conversationId: null },
- }),
- );
- }}
- className={({ isActive }) =>
- `${
- isActive ? 'bg-gray-3000' : ''
- } group my-auto mx-4 mt-4 flex cursor-pointer gap-2.5 rounded-3xl border border-silver p-3 hover:border-rainy-gray hover:bg-gray-3000`
- }
- >
-
-
- New Chat
-
-
- {conversations && (
-
-
Chats
- {conversations?.map((conversation) => (
-
handleConversationClick(id)}
- onDeleteConversation={(id) => handleDeleteConversation(id)}
- onSave={(conversation) => updateConversationName(conversation)}
- />
- ))}
-
- )}
+
+
{
+ dispatch(setConversation([]));
+ dispatch(
+ updateConversationId({
+ query: { conversationId: null },
+ }),
+ );
+ }}
+ className={({ isActive }) =>
+ `${
+ isActive ? 'bg-gray-3000' : ''
+ } group mx-4 mt-4 flex cursor-pointer gap-2.5 rounded-3xl border border-silver p-3 hover:border-rainy-gray hover:bg-gray-3000`
+ }
+ >
+
+
+ New Chat
+
+
+ {conversations && (
+
+
Chats
+ {conversations?.map((conversation) => (
+
handleConversationClick(id)}
+ onDeleteConversation={(id) => handleDeleteConversation(id)}
+ onSave={(conversation) =>
+ updateConversationName(conversation)
+ }
+ />
+ ))}
+
+ )}
+