From 7c2cc207e9f99cb5ec23d04d61294c0dc4aacc89 Mon Sep 17 00:00:00 2001 From: Droid Agent Date: Tue, 27 Jan 2026 15:00:03 +0000 Subject: [PATCH] fix(tui): change 'Starting...' to 'Processing request...' for subagent status --- cortex-tui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex-tui/src/app.rs b/cortex-tui/src/app.rs index 27c7c88a..5a630b15 100644 --- a/cortex-tui/src/app.rs +++ b/cortex-tui/src/app.rs @@ -322,7 +322,7 @@ impl SubagentDisplayStatus { /// Get a short description of the status. pub fn description(&self) -> String { match self { - Self::Starting => "Starting...".to_string(), + Self::Starting => "Processing request...".to_string(), Self::Thinking => "Thinking...".to_string(), Self::ExecutingTool(name) => format!("Running {}", name), Self::Completed => "Completed".to_string(),