From 6cbe1fb2618af557262a8717c494e7958494bf2d Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sun, 08 Mar 2026 07:03:30 +0100
Subject: [PATCH] fix: robust WebSocket reconnection after daemon restart
---
components/ui/StatusDot.tsx | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/components/ui/StatusDot.tsx b/components/ui/StatusDot.tsx
index 543408d..3f3bd83 100644
--- a/components/ui/StatusDot.tsx
+++ b/components/ui/StatusDot.tsx
@@ -13,7 +13,7 @@
? "#22c55e"
: status === "compacting"
? "#3b82f6"
- : status === "connecting"
+ : status === "connecting" || status === "reconnecting"
? "#eab308"
: "#ef4444";
--
Gitblit v1.3.1