diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:40:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-04 13:40:18 +0900 |
commit | 750d92e57e48d5b3614a97558ed8c43ce0351474 (patch) | |
tree | 80fa47ec452813b579fd7919d8f32337f272c6e9 /src/console/components | |
parent | 63a129d2d6fab68784e902476dd9d6d5f563036a (diff) | |
parent | 6b88c15d1a6193cd090c5a1ae9b6ea06a467e171 (diff) |
Merge pull request #1194 from ueokande/dependabot/npm_and_yarn/prettier-2.3.2
Bump prettier from 2.2.1 to 2.3.2
Diffstat (limited to 'src/console/components')
-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(); |