chore: nothing special, subagent enhanced

This commit is contained in:
qixinbo
2026-03-28 08:58:02 +08:00
parent bdf67e9132
commit 00e5587e75
11 changed files with 517 additions and 22 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ export const subagentApi = {
return response.data;
},
get: async (projectId: string, id: string) => {
const response = await axiosInstance.get<Subagent>(`${API_BASE_URL}/${projectId}/subagents/${id}`);
get: async (_projectId: string, id: string) => {
const response = await axiosInstance.get<Subagent>(`/api/v1/subagents/${id}`);
return response.data;
},