typos: s/AGENT.md/AGENTS.md/

Philip Zeyliger created

Change summary

ui/src/components/ChatInterface.tsx | 2 +-
ui/src/components/Message.tsx       | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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<string, React.ComponentType<any>> = {
   bash: BashTool,

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") {