From c4d0707514f7c591dd62ae2b0d006984cfef8919 Mon Sep 17 00:00:00 2001 From: Hibryda Date: Thu, 19 Mar 2026 08:08:53 +0100 Subject: [PATCH] fix(ui-gpui): set first project to Running status so pulse animation triggers --- ui-gpui/src/state.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui-gpui/src/state.rs b/ui-gpui/src/state.rs index 4d1e9ea..d0c0f93 100644 --- a/ui-gpui/src/state.rs +++ b/ui-gpui/src/state.rs @@ -194,9 +194,11 @@ pub struct AppState { impl AppState { /// Create initial state with demo projects. pub fn new_demo() -> Self { + let mut p1 = Project::new("agent-orchestrator", "~/code/ai/agent-orchestrator", 0); + p1.agent.status = AgentStatus::Running; // Triggers pulsing dot animation Self { projects: vec![ - Project::new("agent-orchestrator", "~/code/ai/agent-orchestrator", 0), + p1, Project::new("quanta-discord-bot", "~/code/quanta-discord-bot", 1), ], focused_project_idx: Some(0),