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:
parent
ebdedd9e04
commit
62e606f273
@ -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()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user