From 0fea1a50e3270a3671bfa9a31ad89091f68fb7e1 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 8 Jun 2024 02:08:26 +0900 Subject: [PATCH] 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. --- packages/cli/src/components/SearchBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/components/SearchBox.tsx b/packages/cli/src/components/SearchBox.tsx index 272d630..9406fc8 100644 --- a/packages/cli/src/components/SearchBox.tsx +++ b/packages/cli/src/components/SearchBox.tsx @@ -32,7 +32,7 @@ export function SearchBox({ ).then((result) => { setSuggestions(result) setLoading(false) - if (result.length >= selected) { + if (result.length <= selected) { setSelected(result.length - 1) } })