Handle interrupted agent status in tui_app_server

Keep the rebased realtime stack compiling on current main by rendering the Interrupted multi-agent status in tui_app_server.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-03-16 11:28:01 -07:00
parent 25e19f1694
commit dfd06e1bf7

View File

@@ -537,6 +537,8 @@ fn status_summary_line(status: &AgentStatus) -> Line<'static> {
status_summary_spans(status).into()
}
// Allow `.yellow()`
#[allow(clippy::disallowed_methods)]
fn status_summary_spans(status: &AgentStatus) -> Vec<Span<'static>> {
match status {
AgentStatus::PendingInit => vec![Span::from("Pending init").cyan()],