fix(cli): update dependencies in SearchBox useEffect

The dependencies array in the useEffect hook within SearchBox.tsx has been updated. The 'suggestions' variable has been added to the dependencies to ensure the function updates accordingly when this state changes.
This commit is contained in:
p-sw 2024-06-08 02:46:23 +09:00
parent ebdedd9e04
commit 62e606f273

View File

@ -50,7 +50,7 @@ export function SearchBox<T extends {key: string; displayName: string}>({
setQueryMode(false)
setQuery(suggestions[selected] ?? '')
}
}, [selected, onChange])
}, [selected, suggestions, onChange])
const app = useApp()