From 1efdce50dfcd42739825cc548a4a28f755536d59 Mon Sep 17 00:00:00 2001 From: phact Date: Wed, 16 Jul 2025 01:29:53 -0400 Subject: [PATCH] overflow fix --- frontend/src/app/chat/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/chat/page.tsx b/frontend/src/app/chat/page.tsx index e6b0002c..b26d0270 100644 --- a/frontend/src/app/chat/page.tsx +++ b/frontend/src/app/chat/page.tsx @@ -89,7 +89,7 @@ export default function ChatPage() { - + Chat @@ -98,9 +98,9 @@ export default function ChatPage() { Chat with AI about your indexed documents - + {/* Messages Area */} -
+
{messages.length === 0 ? (
@@ -121,7 +121,7 @@ export default function ChatPage() { >
@@ -141,13 +141,13 @@ export default function ChatPage() {
-

{message.content}

+

{message.content}

{message.timestamp.toLocaleTimeString()}

@@ -157,11 +157,11 @@ export default function ChatPage() { ))} {loading && (
-
+
-
+
Thinking... @@ -176,7 +176,7 @@ export default function ChatPage() {
{/* Input Area */} -
+ setInput(e.target.value)}