From 72864ac027fc802566b2abb76d420ed85785e32b Mon Sep 17 00:00:00 2001
From: OSBotify <76178356+OSBotify@users.noreply.github.com>
Date: Tue, 16 Aug 2022 22:12:27 -0400
Subject: [PATCH 1/2] Merge pull request #10420 from
Expensify/version-BUILD-ABD0D56F-6B32-47EF-A8E1-EB83F78A6C85
Update version to 1.1.88-14 on main
(cherry picked from commit 78bb1d5f9239e23ef1b6c21a0223e355c0155b1b)
---
android/app/build.gradle | 4 ++--
ios/NewExpensify/Info.plist | 2 +-
ios/NewExpensifyTests/Info.plist | 2 +-
package-lock.json | 2 +-
package.json | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 08218219dd7f..e66eb85b43ce 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -155,8 +155,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001018813
- versionName "1.1.88-13"
+ versionCode 1001018814
+ versionName "1.1.88-14"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) {
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index c4a627136562..da93dcd92568 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -30,7 +30,7 @@
CFBundleVersion
- 1.1.88.13
+ 1.1.88.14
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist
index 00f96a21836e..aafe14f4d4a7 100644
--- a/ios/NewExpensifyTests/Info.plist
+++ b/ios/NewExpensifyTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.1.88.13
+ 1.1.88.14
diff --git a/package-lock.json b/package-lock.json
index ce66802f7ee8..5236972d87a7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.1.88-13",
+ "version": "1.1.88-14",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 00f07383356e..4492ce23eaec 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.1.88-13",
+ "version": "1.1.88-14",
"author": "Expensify, Inc.",
"homepage": "https://new.expensify.com",
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
From e2629e3b37d6053f7b4b84e8ddac9d012f31fca8 Mon Sep 17 00:00:00 2001
From: Yuwen Memon
Date: Tue, 16 Aug 2022 19:03:41 -0700
Subject: [PATCH 2/2] Merge pull request #10418 from
Expensify/yuwen-loginFormMadness
Make sure we unsubscribe the pressOnEnter handler for the login form when we render the password form
(cherry picked from commit a4f09c03eae5f31e2459a36189261a190ab152f9)
---
src/pages/signin/LoginForm.js | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/src/pages/signin/LoginForm.js b/src/pages/signin/LoginForm.js
index 04ce5c7cc04f..f80488fb3f4a 100755
--- a/src/pages/signin/LoginForm.js
+++ b/src/pages/signin/LoginForm.js
@@ -181,16 +181,21 @@ class LoginForm extends React.Component {
{this.props.account.success}
)}
-
-
-
+ { // We need to unmount the submit button when the component is not visible so that the Enter button
+ // key handler gets unsubscribed and does not conflict with the Password Form
+ this.props.isVisible && (
+
+
+
+ )
+ }
>
);