diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.js b/packages/react-native/Libraries/Components/TextInput/TextInput.js index 67ad18c0c19b42..21271917a97f4d 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.js +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.js @@ -1347,6 +1347,7 @@ function InternalTextInput(props: Props): React.Node { const config = React.useMemo( () => ({ + hitSlop: props.hitSlop, onPress: (event: PressEvent) => { if (props.editable !== false) { if (inputRef.current != null) { @@ -1361,6 +1362,7 @@ function InternalTextInput(props: Props): React.Node { }), [ props.editable, + props.hitSlop, props.onPressIn, props.onPressOut, props.rejectResponderTermination,