diff --git a/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js b/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js index 0059f35cd63..e732564f42f 100644 --- a/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +++ b/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js @@ -97,7 +97,7 @@ export type NativeProps = $ReadOnly<{| * * @platform android */ - autoCompleteType?: WithDefault< + autoComplete?: WithDefault< | 'cc-csc' | 'cc-exp' | 'cc-exp-month' diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index e25e3011446..74689bec473 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -331,7 +331,7 @@ type AndroidProps = $ReadOnly<{| * * @platform android */ - autoCompleteType?: ?( + autoComplete?: ?( | 'birthdate-day' | 'birthdate-full' | 'birthdate-month' diff --git a/Libraries/DeprecatedPropTypes/DeprecatedTextInputPropTypes.js b/Libraries/DeprecatedPropTypes/DeprecatedTextInputPropTypes.js index 0f371f7af2e..937e1c7a73e 100644 --- a/Libraries/DeprecatedPropTypes/DeprecatedTextInputPropTypes.js +++ b/Libraries/DeprecatedPropTypes/DeprecatedTextInputPropTypes.js @@ -64,7 +64,7 @@ module.exports = { * * @platform android */ - autoCompleteType: (PropTypes.oneOf([ + autoComplete: (PropTypes.oneOf([ 'cc-csc', 'cc-exp', 'cc-exp-month',