From 536c987c39c51411d067c2f640165ac5bc0e929b Mon Sep 17 00:00:00 2001 From: Eva Ho Date: Wed, 5 Nov 2025 20:19:34 -0500 Subject: [PATCH] address comment --- app/ui/app/src/components/Thinking.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/app/src/components/Thinking.tsx b/app/ui/app/src/components/Thinking.tsx index a725ce9c22..a0c825d36d 100644 --- a/app/ui/app/src/components/Thinking.tsx +++ b/app/ui/app/src/components/Thinking.tsx @@ -134,7 +134,7 @@ export default function Thinking({ ref={wrapperRef} className={`text-xs text-neutral-500 dark:text-neutral-500 rounded-md transition-[max-height,opacity] duration-300 ease-in-out relative ml-6 mt-2 - ${isCollapsed ? "overflow-hidden" : "overflow-y-auto max-h-28"}`} + ${isCollapsed ? "overflow-hidden" : activelyThinking ? "overflow-y-auto max-h-28" : "overflow-y-auto"}`} style={{ maxHeight: isCollapsed ? getMaxHeight() : undefined, opacity: isCollapsed && finishedThinking ? 0 : 1,