From b03166f5c5b96d7fa498d1909bb65aa20a5eda92 Mon Sep 17 00:00:00 2001 From: Austin Pickett Date: Fri, 22 May 2026 12:09:57 -0400 Subject: [PATCH] fix(web): address Copilot review on ToolCall labels and copy button Widen the tool-call section label column for text-xs + text-display, and restore normal-case on the terminal copy button so it stays sentence case. Co-authored-by: Cursor --- web/src/components/ToolCall.tsx | 2 +- web/src/pages/ChatPage.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/ToolCall.tsx b/web/src/components/ToolCall.tsx index 540134adda..5db7410b20 100644 --- a/web/src/components/ToolCall.tsx +++ b/web/src/components/ToolCall.tsx @@ -186,7 +186,7 @@ function Section({ return (
diff --git a/web/src/pages/ChatPage.tsx b/web/src/pages/ChatPage.tsx index 8ad788879a..d0b6a0f5de 100644 --- a/web/src/pages/ChatPage.tsx +++ b/web/src/pages/ChatPage.tsx @@ -820,6 +820,7 @@ export default function ChatPage({ isActive = true }: { isActive?: boolean }) { aria-label="Copy last assistant response" className={cn( "absolute z-10", + "normal-case tracking-normal font-normal", "rounded border border-current/30", "bg-black/20 backdrop-blur-sm", "opacity-70 hover:opacity-100 hover:border-current/60",