fix(cli): update condition in SearchBox component

This commit modifies a conditional statement in the SearchBox component to properly manage the selected index based on the length of search results. This ensures appropriate selection even when the result length is less than or equal to the selected index.
This commit is contained in:
p-sw 2024-06-08 02:08:26 +09:00
parent 803659a06b
commit 0fea1a50e3

View File

@ -32,7 +32,7 @@ export function SearchBox<T extends {key: string; displayName: string}>({
).then((result) => {
setSuggestions(result)
setLoading(false)
if (result.length >= selected) {
if (result.length <= selected) {
setSelected(result.length - 1)
}
})