diff --git a/packages/react-native-web/src/exports/TextInput/index.js b/packages/react-native-web/src/exports/TextInput/index.js index 41b104c26..c9b0b4439 100644 --- a/packages/react-native-web/src/exports/TextInput/index.js +++ b/packages/react-native-web/src/exports/TextInput/index.js @@ -361,7 +361,7 @@ const TextInput = forwardRef((props, forwardedRef) => { supportedProps.classList = classList; // 'auto' by default allows browsers to infer writing direction supportedProps.dir = dir !== undefined ? dir : 'auto'; - supportedProps.enterkeyhint = returnKeyType; + supportedProps.enterKeyHint = returnKeyType; supportedProps.onBlur = handleBlur; supportedProps.onChange = handleChange; supportedProps.onFocus = handleFocus;