diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.js b/packages/react-native/Libraries/Components/TextInput/TextInput.js index b8d86021e17105..3a1fa5684a0bd9 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.js +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.js @@ -1380,6 +1380,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) { @@ -1394,6 +1395,7 @@ function InternalTextInput(props: Props): React.Node { }), [ props.editable, + props.hitSlop, props.onPressIn, props.onPressOut, props.rejectResponderTermination,