diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:29:42 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:29:42 +0900 |
commit | 6b88c15d1a6193cd090c5a1ae9b6ea06a467e171 (patch) | |
tree | e1b78080d8e10477007c9379b57a6213e6f72c6a /src/console/components/CommandPrompt.tsx | |
parent | 5904eeff1a75dcf83bcef7d5666a7473cc5b77de (diff) |
yarn lint:fix
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(); |