From 3a351f67e678880aa8d3e25405ecf3ed7782647b Mon Sep 17 00:00:00 2001 From: ananthakrishnan Date: Mon, 14 Jul 2025 20:20:55 +0530 Subject: [PATCH 1/2] fix: correct agent tools name when creating new agent (#1877) --- frontend/src/agents/NewAgent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/agents/NewAgent.tsx b/frontend/src/agents/NewAgent.tsx index b3047fa9..5da72478 100644 --- a/frontend/src/agents/NewAgent.tsx +++ b/frontend/src/agents/NewAgent.tsx @@ -232,7 +232,7 @@ export default function NewAgent({ mode }: { mode: 'new' | 'edit' | 'draft' }) { const data = await response.json(); const tools: OptionType[] = data.tools.map((tool: UserToolType) => ({ id: tool.id, - label: tool.displayName, + label: tool.customName, icon: `/toolIcons/tool_${tool.name}.svg`, })); setUserTools(tools); From 789e65557a7d2399b64b7b53f53072d1674f780b Mon Sep 17 00:00:00 2001 From: ananthakrishnan Date: Tue, 15 Jul 2025 22:02:02 +0530 Subject: [PATCH 2/2] fix: Removed incorrect www from URL in DocsGPT Docs frontend (#1854) --- docs/theme.config.jsx | 2 +- frontend/src/agents/NewAgent.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/theme.config.jsx b/docs/theme.config.jsx index 77d8b9c1..bfd32b4c 100644 --- a/docs/theme.config.jsx +++ b/docs/theme.config.jsx @@ -60,7 +60,7 @@ const config = { GitHub {' | '} - + Blog diff --git a/frontend/src/agents/NewAgent.tsx b/frontend/src/agents/NewAgent.tsx index 5da72478..b3047fa9 100644 --- a/frontend/src/agents/NewAgent.tsx +++ b/frontend/src/agents/NewAgent.tsx @@ -232,7 +232,7 @@ export default function NewAgent({ mode }: { mode: 'new' | 'edit' | 'draft' }) { const data = await response.json(); const tools: OptionType[] = data.tools.map((tool: UserToolType) => ({ id: tool.id, - label: tool.customName, + label: tool.displayName, icon: `/toolIcons/tool_${tool.name}.svg`, })); setUserTools(tools);