From 0e8a570ffd5ae32ae6972d350c657256dbc3adcc Mon Sep 17 00:00:00 2001 From: puzhen <1303385763@qq.com> Date: Mon, 20 Oct 2025 18:09:15 +0100 Subject: [PATCH] update --- src/store/chatStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/chatStore.ts b/src/store/chatStore.ts index 832775212..f405a54a9 100644 --- a/src/store/chatStore.ts +++ b/src/store/chatStore.ts @@ -585,7 +585,7 @@ const chatStore = (initial?: Partial) => createStore()( if (!agent_name || !agent_id) return; // Add agent to taskAssigning - if (!['mcp_agent', 'new_worker_agent', 'task_agent', 'task_summary_agent', "coordinator_agent"].includes(agent_name)) { + if (!['mcp_agent', 'new_worker_agent', 'task_agent', 'task_summary_agent', "coordinator_agent", "question_confirm_agent"].includes(agent_name)) { // if (agentNameMap[agent_name as keyof typeof agentNameMap]) { const hasAgent = tasks[currentTaskId].taskAssigning.find((agent) => agent.agent_id === agent_id)