diff --git a/src/components/SelectionList/BaseSelectionList.tsx b/src/components/SelectionList/BaseSelectionList.tsx index e2d1a5720b4f..a515474b9d97 100644 --- a/src/components/SelectionList/BaseSelectionList.tsx +++ b/src/components/SelectionList/BaseSelectionList.tsx @@ -101,7 +101,7 @@ function BaseSelectionList( onLongPressRow, shouldShowTextInput = !!textInputLabel || !!textInputIconLeft, shouldShowListEmptyContent = true, - shouldIgnoreFocus, + shouldIgnoreFocus = false, scrollEventThrottle, contentContainerStyle, }: BaseSelectionListProps, @@ -469,7 +469,7 @@ function BaseSelectionList( isAlternateTextMultilineSupported={isAlternateTextMultilineSupported} alternateTextNumberOfLines={alternateTextNumberOfLines} onFocus={() => { - if (!!shouldIgnoreFocus || isDisabled) { + if (shouldIgnoreFocus || isDisabled) { return; } setFocusedIndex(normalizedIndex);