diff --git a/frontend/src/Navigation.tsx b/frontend/src/Navigation.tsx index 7f9f65d..2847296 100644 --- a/frontend/src/Navigation.tsx +++ b/frontend/src/Navigation.tsx @@ -59,7 +59,11 @@ export default function Navigation({ + `${ + isActive ? 'bg-gray-3000' : '' + } my-auto mx-4 mt-4 flex h-12 cursor-pointer gap-4 rounded-md hover:bg-gray-100` + } >

Chat

@@ -94,7 +98,11 @@ export default function Navigation({
+ `my-auto mx-4 flex h-12 cursor-pointer gap-4 rounded-md hover:bg-gray-100 ${ + isActive ? 'bg-gray-3000' : '' + }` + } > info

About

diff --git a/frontend/src/conversation/Conversation.tsx b/frontend/src/conversation/Conversation.tsx index 192ad90..cc38c2a 100644 --- a/frontend/src/conversation/Conversation.tsx +++ b/frontend/src/conversation/Conversation.tsx @@ -42,7 +42,7 @@ export default function Conversation() { > ); })} - {messages.length === 0 && } + {messages.length === 0 && }