From 68f09660e9e8dd1d5bbfffd773874bda3aa07c07 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 19 Feb 2026 15:23:27 -0800 Subject: [PATCH] Fix: thinking UI just messed up with scroll and make the whole chat panel moved. --- apps/web/app/components/chat-panel.tsx | 128 +++++++++---------------- 1 file changed, 47 insertions(+), 81 deletions(-) diff --git a/apps/web/app/components/chat-panel.tsx b/apps/web/app/components/chat-panel.tsx index 9d52779cfbd..847367d53c7 100644 --- a/apps/web/app/components/chat-panel.tsx +++ b/apps/web/app/components/chat-panel.tsx @@ -1353,7 +1353,7 @@ export const ChatPanel = forwardRef( return (
{/* Header — sticky glass bar */} @@ -1603,12 +1603,11 @@ export const ChatPanel = forwardRef( >
{ if ( @@ -1786,56 +1785,50 @@ export const ChatPanel = forwardRef(
- {/* Send / Stop / Queue buttons */} + {/* Send / Stop button (single button, toggles role) */}
- {isStreaming && ( - + ) : ( + - )} - + + )}
@@ -1884,16 +1860,6 @@ export const ChatPanel = forwardRef( onSelect={handleFilesSelected} /> - {/* Drop highlight for sidebar drag-and-drop */} - ); },