From e142ec2dd4a2834b9ba0aba1544848a64736e4ff Mon Sep 17 00:00:00 2001 From: Fam Zheng Date: Tue, 7 Apr 2026 10:00:49 +0100 Subject: [PATCH] fix: remove duplicate listWorkers in api.ts --- web/src/api.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/api.ts b/web/src/api.ts index 9250aad..a064904 100644 --- a/web/src/api.ts +++ b/web/src/api.ts @@ -93,8 +93,6 @@ export const api = { deleteTimer: (timerId: string) => request(`/timers/${timerId}`, { method: 'DELETE' }), - listWorkers: () => - request<{ name: string; cpu: string; memory: string; gpu: string }[]>('/workers'), getKb: () => request<{ content: string }>('/kb'),