From 2ab25babce34ca0770986c19415c0c49d5b43482 Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Mon, 16 Mar 2026 16:00:02 -0500 Subject: [PATCH] fix(ui): align chatStream lifecycle type with nullable state --- ui/src/ui/app-lifecycle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/ui/app-lifecycle.ts b/ui/src/ui/app-lifecycle.ts index 66c3b54e77b..ae816a0bdb9 100644 --- a/ui/src/ui/app-lifecycle.ts +++ b/ui/src/ui/app-lifecycle.ts @@ -34,7 +34,7 @@ type LifecycleHost = { chatLoading: boolean; chatMessages: unknown[]; chatToolMessages: unknown[]; - chatStream: string; + chatStream: string | null; logsAutoFollow: boolean; logsAtBottom: boolean; logsEntries: unknown[];