From 28a2f95631d7ce5a37b8e9b38a8aa299eb448be3 Mon Sep 17 00:00:00 2001 From: alt-glitch Date: Tue, 9 Jun 2026 07:49:46 +0000 Subject: [PATCH] opentui(harden): clear the recovering status once the gateway is ready again --- ui-tui-opentui-v2/src/logic/store.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui-tui-opentui-v2/src/logic/store.ts b/ui-tui-opentui-v2/src/logic/store.ts index ec6a8913d4b..cb928ba3c0b 100644 --- a/ui-tui-opentui-v2/src/logic/store.ts +++ b/ui-tui-opentui-v2/src/logic/store.ts @@ -482,6 +482,9 @@ export function createSessionStore() { switch (event.type) { case 'gateway.ready': setState('ready', true) + // Clear any transient status: on a recovery-respawn ready this drops the + // lingering 'gateway recovering (attempt N)…' line; no-op on first connect. + setState('status', undefined) setSkin(event.payload?.skin) break case 'skin.changed':