fix(tui): show /browser connect progress like CLI

Return CLI-style browser connect status messages from the gateway and render them in the TUI so local Chrome launch attempts are visible instead of ending in a silent delayed failure.
This commit is contained in:
Brooklyn Nicholson
2026-04-28 22:22:32 -05:00
committed by Teknium
parent 69ff114ee2
commit 7d39a45749
5 changed files with 85 additions and 14 deletions

View File

@@ -314,6 +314,7 @@ export interface ProcessStopResponse {
export interface BrowserManageResponse {
connected?: boolean
messages?: string[]
url?: string
}