Skip to content

Commit 8dde21f

Browse files
authored
🐛 Bugfix: Fixed an issue where the one-click rename function failed after importing an agent. (#3258)
[Specification Details] 1. The frontend does not pass `agent_id` when calling the `regenerate_name` API.
1 parent 2eb724f commit 8dde21f

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

frontend/components/agent/AgentImportWizard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,6 @@ export default function AgentImportWizard({
393393
items: agentsWithConflicts.map(([agentKey, conflict]) => {
394394
const agentInfo = initialData.agent_info[agentKey] as any;
395395
return {
396-
agent_id: agentInfo?.agent_id,
397396
name: conflict.renamedName || agentInfo?.name || "",
398397
display_name: conflict.renamedDisplayName || agentInfo?.display_name || "",
399398
task_description: agentInfo?.business_description || agentInfo?.description || "",

0 commit comments

Comments
 (0)