fix: align tui editor init (#1298) (thanks @sibbl)

This commit is contained in:
Peter Steinberger
2026-01-20 14:31:28 +00:00
parent e3a99aa2ce
commit 41f6d06967
4 changed files with 5 additions and 21 deletions

View File

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