fix(frontend): V1 resume conversation / agent (#11627)

This commit is contained in:
sp.wack 2025-11-05 18:16:46 +04:00 committed by GitHub
parent 6411d4df94
commit 9a7002d817
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(() => {