diff --git a/android/app/build.gradle b/android/app/build.gradle index f2303ca90979..951b126d9314 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -152,8 +152,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001014401 - versionName "1.1.44-1" + versionCode 1001014402 + versionName "1.1.44-2" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index 37a88cc71992..cdc876537611 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -31,7 +31,7 @@ CFBundleVersion - 1.1.44.1 + 1.1.44.2 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index be556d9dfc02..942c1d831842 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.44.1 + 1.1.44.2 diff --git a/package-lock.json b/package-lock.json index 253175e575f0..e0dc00762abe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.44-1", + "version": "1.1.44-2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1ff69dcdf42d..2d52a069851e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.44-1", + "version": "1.1.44-2", "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/LogInWithShortLivedTokenPage.js b/src/pages/LogInWithShortLivedTokenPage.js index 61cb4778bf25..acd8c659104b 100644 --- a/src/pages/LogInWithShortLivedTokenPage.js +++ b/src/pages/LogInWithShortLivedTokenPage.js @@ -121,4 +121,10 @@ export default withOnyx({ session: { key: ONYXKEYS.SESSION, }, + + // We need to subscribe to the betas so that componentDidUpdate will run, + // causing us to exit to the proper page. + betas: { + key: ONYXKEYS.BETAS, + }, })(LogInWithShortLivedTokenPage);