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);