diff --git a/frontend/src/components/features/controls/agent-status.tsx b/frontend/src/components/features/controls/agent-status.tsx index 97df48befd..5bfd18f486 100644 --- a/frontend/src/components/features/controls/agent-status.tsx +++ b/frontend/src/components/features/controls/agent-status.tsx @@ -56,7 +56,8 @@ export function AgentStatus({ const shouldShownAgentStop = curAgentState === AgentState.RUNNING; - const shouldShownAgentResume = curAgentState === AgentState.STOPPED; + const shouldShownAgentResume = + curAgentState === AgentState.STOPPED || curAgentState === AgentState.PAUSED; // Update global state when agent loading condition changes useEffect(() => {