From c8d11ff6546116e5e30798a2de6397366373f8db Mon Sep 17 00:00:00 2001 From: "mula.liu" Date: Tue, 31 Mar 2026 14:07:27 +0800 Subject: [PATCH] v0.1.4-p4 --- frontend/src/modules/dashboard/components/BotListPanel.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/modules/dashboard/components/BotListPanel.tsx b/frontend/src/modules/dashboard/components/BotListPanel.tsx index 1c82667..8e0443f 100644 --- a/frontend/src/modules/dashboard/components/BotListPanel.tsx +++ b/frontend/src/modules/dashboard/components/BotListPanel.tsx @@ -215,8 +215,6 @@ export function BotListPanel({ const controlState = controlStateByBot[bot.id]; const isOperating = operatingBotId === bot.id; const isEnabled = bot.enabled !== false; - const isStarting = controlState === 'starting'; - const isStopping = controlState === 'stopping'; const isEnabling = controlState === 'enabling'; const isDisabling = controlState === 'disabling'; const isRunning = String(bot.docker_status || '').toUpperCase() === 'RUNNING';