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.", 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 && ( + + + + ) + } );