From 191eb62edb58bc8e934226f4cbd4829c88958455 Mon Sep 17 00:00:00 2001 From: Garrett Forbes Monroe Date: Fri, 15 Jul 2022 08:20:20 -0700 Subject: [PATCH] Revert D37801394: Multisect successfully blamed D37801394 for test or build failures Summary: This diff is reverting D37801394 (https://github.com/facebook/react-native/commit/51f49ca9982f24de08f5a5654a5210e547bb5b86) D37801394 (https://github.com/facebook/react-native/commit/51f49ca9982f24de08f5a5654a5210e547bb5b86) has been identified to be causing the following test or build failures: Tests affected: - https://www.internalfb.com/intern/test/844424989736255/ Here's the Multisect link: https://www.internalfb.com/intern/testinfra/multisect/1062919 Here are the tasks that are relevant to this breakage: T116036972: 105 tests started failing for oncall bridgeless_jest_e2e_tests in the last 2 weeks We're generating a revert to back out the changes in this diff, please note the backout may land if someone accepts it. **To Address Land blocker from previous version (see pic):** {F752642767} ``` Changelog: [General][Change] - Revert breaking change in MPay order creation screen (user input in duplicated, and then not deletable. See T126127801 for more details) ``` Reviewed By: philIip Differential Revision: D37863306 fbshipit-source-id: 24f2448d7bc9761ec31edd6f6b97c668171027d3 --- Libraries/Components/TextInput/TextInput.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index cb71d97bd1..8fa117192f 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -976,8 +976,6 @@ function InternalTextInput(props: Props): React.Node { const text = typeof props.value === 'string' ? props.value - : typeof lastNativeText === 'string' - ? lastNativeText : typeof props.defaultValue === 'string' ? props.defaultValue : '';