diff options
| author | Dax Raad <[email protected]> | 2025-11-05 20:31:13 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-11-05 20:31:13 -0500 |
| commit | e136a40771fc02b16fdf7c08e294225b9678a312 (patch) | |
| tree | c213b845ddbb04d03267a68d2689cde46234f79c | |
| parent | ef25650cedb46af3ba7ea6632761d496d2179f53 (diff) | |
| download | opencode-e136a40771fc02b16fdf7c08e294225b9678a312.tar.gz opencode-e136a40771fc02b16fdf7c08e294225b9678a312.zip | |
ignore tmp type rrror
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx index 663e4f520..c977f7318 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx @@ -539,7 +539,8 @@ export function Prompt(props: PromptProps) { syncExtmarksWithPromptParts() }} keyBindings={textareaKeybindings()} - onKeyDown={async (e: KeyEvent) => { + // TODO: fix this any + onKeyDown={async (e: any) => { if (props.disabled) { e.preventDefault() return |
