diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index 273d64914dd7ec..4dc547d01c5698 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -976,6 +976,8 @@ function InternalTextInput(props: Props): React.Node { const text = typeof props.value === 'string' ? props.value + : typeof lastNativeText === 'string' + ? lastNativeText : typeof props.defaultValue === 'string' ? props.defaultValue : '';