diff --git a/ui/src/components/ChatInterface.tsx b/ui/src/components/ChatInterface.tsx index 7cee2335a8b42f92051398a3cf8433e82780dbc7..f82253a8836ff26c9787b05f84785b74e631f7eb 100644 --- a/ui/src/components/ChatInterface.tsx +++ b/ui/src/components/ChatInterface.tsx @@ -129,7 +129,7 @@ interface CoalescedToolCallProps { // Map tool names to their specialized components. // IMPORTANT: When adding a new tool here, also add it to Message.tsx renderContent() -// for both tool_use and tool_result cases. See AGENT.md in this directory. +// for both tool_use and tool_result cases. See AGENTS.md in this directory. // eslint-disable-next-line @typescript-eslint/no-explicit-any const TOOL_COMPONENTS: Record> = { bash: BashTool, diff --git a/ui/src/components/Message.tsx b/ui/src/components/Message.tsx index dc59bdfe30b1da1adddcb335bd56d4697cd972ef..7dd8ddfcab4aeb9860cb4a3a5ca444da6b18ff3b 100644 --- a/ui/src/components/Message.tsx +++ b/ui/src/components/Message.tsx @@ -345,7 +345,7 @@ function Message({ message, onOpenDiffViewer, onCommentTextChange }: MessageProp // IMPORTANT: When adding a new tool component here, also add it to: // 1. The tool_result case below // 2. TOOL_COMPONENTS map in ChatInterface.tsx - // See AGENT.md in this directory. + // See AGENTS.md in this directory. // Use specialized component for bash tool if (content.ToolName === "bash") {