diff --git a/src/components/SelectionList/BaseSelectionList.tsx b/src/components/SelectionList/BaseSelectionList.tsx index b92b4cef862f..bfb72bba08ef 100644 --- a/src/components/SelectionList/BaseSelectionList.tsx +++ b/src/components/SelectionList/BaseSelectionList.tsx @@ -277,7 +277,7 @@ function BaseSelectionList( }, [onChangeText]); // eslint-disable-next-line react-hooks/exhaustive-deps - const debouncedOnSelectRow = useCallback(lodashDebounce(onSelectRow, 1000, {leading: true}), [onSelectRow]); + const debouncedOnSelectRow = useCallback(lodashDebounce(onSelectRow, 200), [onSelectRow]); /** * Logic to run when a row is selected, either with click/press or keyboard hotkeys.