summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/InputPrompt.tsx
diff options
context:
space:
mode:
authorEvan Senter <[email protected]>2025-04-18 18:29:27 +0100
committerEvan Senter <[email protected]>2025-04-18 18:36:33 +0100
commitdbf4c3a37c55b8e14c9fefd1f839d3555072e17b (patch)
tree8ae6e7136eaec78573cd86fb982e4a725079bfe7 /packages/cli/src/ui/components/InputPrompt.tsx
parentf330a87e50fb6e8e4f1949851f8f6b6cf53d7776 (diff)
Revert "Including a test harness for it, and making sure the cursor is always at the end."
This reverts commit 97db77997fd6369031d2f1cf750051999fb0b5b5.
Diffstat (limited to 'packages/cli/src/ui/components/InputPrompt.tsx')
-rw-r--r--packages/cli/src/ui/components/InputPrompt.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/InputPrompt.tsx b/packages/cli/src/ui/components/InputPrompt.tsx
index 1119926f..f79aeaa3 100644
--- a/packages/cli/src/ui/components/InputPrompt.tsx
+++ b/packages/cli/src/ui/components/InputPrompt.tsx
@@ -8,14 +8,12 @@ interface InputPromptProps {
setQuery: (value: string) => void;
onSubmit: (value: string) => void;
isActive: boolean;
- forceKey: number;
}
const InputPrompt: React.FC<InputPromptProps> = ({
query,
setQuery,
onSubmit,
- forceKey,
}) => {
const model = getModel();
@@ -24,7 +22,6 @@ const InputPrompt: React.FC<InputPromptProps> = ({
<Text color={'white'}>&gt; </Text>
<Box flexGrow={1}>
<TextInput
- key={forceKey}
value={query}
onChange={setQuery}
onSubmit={onSubmit}