fix(app): show retry sessions as working

This commit is contained in:
LukeParkerDev
2026-05-13 09:16:33 +10:00
parent ad318bce65
commit 9ad4403df7

View File

@@ -168,7 +168,7 @@ export const SessionItem = (props: SessionItemProps): JSX.Element => {
if (hasPermissions()) return false
// This matches how the TUI does it
const status = sessionStore.session_status[props.session.id]
return status?.type === "busy"
return status?.type === "busy" || status?.type === "retry"
})
const tint = createMemo(() => messageAgentColor(sessionStore.message[props.session.id], sessionStore.agent))