diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2022-05-05 10:17:20 +0000 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2022-05-05 10:17:20 +0000 |
commit | cc427e967d63523b90ecc1c6aa2c864cb13b4b58 (patch) | |
tree | 43ddaf5b2e0798d4656bbc1bdbaa1ae881283573 /src/console/components | |
parent | 0d17912972de6b9e8b08aedf141260413c60d7fd (diff) |
Pass source string via argument
Diffstat (limited to 'src/console/components')
-rw-r--r-- | src/console/components/CommandPrompt.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/console/components/CommandPrompt.tsx b/src/console/components/CommandPrompt.tsx index 0312fe4..89acf57 100644 --- a/src/console/components/CommandPrompt.tsx +++ b/src/console/components/CommandPrompt.tsx @@ -22,7 +22,7 @@ const CommandPromptInner: React.FC<Props> = ({ initialInputValue }) => { const hide = useHide(); const [inputValue, setInputValue] = React.useState(initialInputValue); const debouncedValue = useDebounce(inputValue, 100); - const { completions, updateCompletions } = useCompletions(); + const { completions } = useCompletions(debouncedValue); const { select, currentValue, selectNext, selectPrev } = useSelectCompletion(); const execCommand = useExecCommand(); @@ -83,10 +83,6 @@ const CommandPromptInner: React.FC<Props> = ({ initialInputValue }) => { setInputValue(text); }; - React.useEffect(() => { - updateCompletions(debouncedValue); - }, [debouncedValue]); - return ( <ConsoleWrapper> <Completion |