From d18319a57ddb67608f892edb7af24efdc97b8d8b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 20 Jan 2026 14:35:09 +0000 Subject: [PATCH] fix: align CustomEditor with pi-tui Editor API --- src/tui/components/custom-editor.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tui/components/custom-editor.ts b/src/tui/components/custom-editor.ts index 54fbe819a..b66452e61 100644 --- a/src/tui/components/custom-editor.ts +++ b/src/tui/components/custom-editor.ts @@ -15,7 +15,6 @@ export class CustomEditor extends Editor { constructor(theme: EditorTheme) { super(theme); } - handleInput(data: string): void { if (matchesKey(data, Key.alt("enter")) && this.onAltEnter) { this.onAltEnter();