fix(browser): register AI snapshot refs (#1282)

thanks @John-Rood

Co-authored-by: John Rood <62669593+John-Rood@users.noreply.github.com>
This commit is contained in:
Peter Steinberger
2026-01-20 14:12:50 +00:00
parent 710c681283
commit da4b124480
7 changed files with 88 additions and 47 deletions

View File

@@ -188,11 +188,11 @@ export async function runTui(opts: TuiOptions) {
password: opts.password,
});
const tui = new TUI(new ProcessTerminal());
const header = new Text("", 1, 0);
const statusContainer = new Container();
const footer = new Text("", 1, 0);
const chatLog = new ChatLog();
const tui = new TUI(new ProcessTerminal());
const editor = new CustomEditor(tui, editorTheme);
const root = new Container();
root.addChild(header);