diff --git a/src/components/SelectionList/BaseSelectionList.tsx b/src/components/SelectionList/BaseSelectionList.tsx index cdea6b2a2473..e81bbb27d20e 100644 --- a/src/components/SelectionList/BaseSelectionList.tsx +++ b/src/components/SelectionList/BaseSelectionList.tsx @@ -355,7 +355,7 @@ function BaseSelectionList( return; } // Remove the focus if the search input is empty else focus on the first non disabled item - const newSelectedIndex = textInputValue !== '' ? 0 : -1; + const newSelectedIndex = textInputValue === '' ? -1 : 0; updateAndScrollToFocusedIndex(newSelectedIndex); }, [canSelectMultiple, flattenedSections.allOptions.length, prevTextInputValue, textInputValue, updateAndScrollToFocusedIndex]);