Skip to content

Commit d6f318e

Browse files
authored
Merge pull request #4289 from Expensify/cherry-pick-staging-4286
2 parents 5edc991 + bc0340d commit d6f318e

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ android {
150150
minSdkVersion rootProject.ext.minSdkVersion
151151
targetSdkVersion rootProject.ext.targetSdkVersion
152152
multiDexEnabled rootProject.ext.multiDexEnabled
153-
versionCode 1001008100
154-
versionName "1.0.81-0"
153+
versionCode 1001008101
154+
versionName "1.0.81-1"
155155
}
156156
splits {
157157
abi {

ios/ExpensifyCash/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.0.81.0</string>
33+
<string>1.0.81.1</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/ExpensifyCashTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.0.81.0</string>
22+
<string>1.0.81.1</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "expensify.cash",
3-
"version": "1.0.81-0",
3+
"version": "1.0.81-1",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/components/LocalePicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default compose(
7979
withLocalize,
8080
withOnyx({
8181
preferredLocale: {
82-
key: ONYXKEYS.PREFERRED_LOCALE,
82+
key: ONYXKEYS.NVP_PREFERRED_LOCALE,
8383
},
8484
betas: {
8585
key: ONYXKEYS.BETAS,

src/libs/actions/SignInRedirect.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Onyx.connect({
2121

2222
let currentPreferredLocale;
2323
Onyx.connect({
24-
key: ONYXKEYS.PREFERRED_LOCALE,
24+
key: ONYXKEYS.NVP_PREFERRED_LOCALE,
2525
callback: val => currentPreferredLocale = val,
2626
});
2727

@@ -51,7 +51,7 @@ function redirectToSignIn(errorMessage) {
5151
.then(() => {
5252
Onyx.clear().then(() => {
5353
if (preferredLocale) {
54-
Onyx.set(ONYXKEYS.PREFERRED_LOCALE, preferredLocale);
54+
Onyx.set(ONYXKEYS.NVP_PREFERRED_LOCALE, preferredLocale);
5555
}
5656
if (errorMessage) {
5757
Onyx.set(ONYXKEYS.SESSION, {error: errorMessage});

0 commit comments

Comments
 (0)