diff options
Diffstat (limited to 'src/console/components/CommandPrompt.tsx')
-rw-r--r-- | src/console/components/CommandPrompt.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/console/components/CommandPrompt.tsx b/src/console/components/CommandPrompt.tsx index 1b6281b..0e2506c 100644 --- a/src/console/components/CommandPrompt.tsx +++ b/src/console/components/CommandPrompt.tsx @@ -21,12 +21,8 @@ const CommandPromptInner: React.FC<Props> = ({ initialInputValue }) => { const hide = useHide(); const [inputValue, setInputValue] = React.useState(initialInputValue); const { completions, updateCompletions } = useCompletions(); - const { - select, - currentValue, - selectNext, - selectPrev, - } = useSelectCompletion(); + const { select, currentValue, selectNext, selectPrev } = + useSelectCompletion(); const execCommand = useExecCommand(); useAutoResize(); |