Skip to content

Commit 058d99e

Browse files
committed
Merge branch 'main' of https://github.com/Expensify/App into ikevin127-devHeapCrashAutoRestart
2 parents 2b99612 + 633cb2b commit 058d99e

156 files changed

Lines changed: 2039 additions & 795 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ module.exports = {
237237
'react-native-a11y/has-accessibility-hint': ['off'],
238238
'react/require-default-props': 'off',
239239
'react/prop-types': 'off',
240+
'react/jsx-key': 'error',
240241
'react/jsx-no-constructed-context-values': 'error',
241242
'react-native-a11y/has-valid-accessibility-descriptors': [
242243
'error',

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009018703
118-
versionName "9.1.87-3"
117+
versionCode 1009018710
118+
versionName "9.1.87-10"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.1.87.3</string>
47+
<string>9.1.87.10</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.87</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.87.3</string>
16+
<string>9.1.87.10</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.87</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.87.3</string>
16+
<string>9.1.87.10</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.1.87-3",
3+
"version": "9.1.87-10",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
@@ -46,7 +46,7 @@
4646
"test:debug": "TZ=utc NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --runInBand",
4747
"perf-test": "NODE_OPTIONS=--experimental-vm-modules npx reassure",
4848
"typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc",
49-
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=325 --cache --cache-location=node_modules/.cache/eslint",
49+
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=324 --cache --cache-location=node_modules/.cache/eslint",
5050
"lint-changed": "NODE_OPTIONS=--max_old_space_size=8192 ./scripts/lintChanged.sh",
5151
"lint-watch": "npx eslint-watch --watch --changed",
5252
"shellcheck": "./scripts/shellCheck.sh",

src/CONST/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,7 @@ const CONST = {
889889
EMPTY_ARRAY,
890890
EMPTY_OBJECT,
891891
DEFAULT_NUMBER_ID,
892+
FAKE_REPORT_ID: 'FAKE_REPORT_ID',
892893
USE_EXPENSIFY_URL,
893894
EXPENSIFY_URL,
894895
EXPENSIFY_MOBILE_URL,
@@ -6443,7 +6444,7 @@ const CONST = {
64436444
EXPORT: 'export',
64446445
STATEMENTS: 'statements',
64456446
UNAPPROVED_CASH: 'unapprovedCash',
6446-
UNAPPROVED_COMPANY_CARDS: 'unapprovedCompanyCards',
6447+
UNAPPROVED_CARD: 'unapprovedCard',
64476448
},
64486449
},
64496450

src/ONYXKEYS.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,8 @@ const ONYXKEYS = {
545545
/** Is unreported transactions loading */
546546
IS_LOADING_UNREPORTED_TRANSACTIONS: 'isLoadingUnreportedTransactions',
547547

548-
/** List of transaction thread IDs used when navigating to prev/next transaction when viewing it in RHP */
549-
TRANSACTION_THREAD_NAVIGATION_REPORT_IDS: 'transactionThreadNavigationReportIDs',
548+
/** List of transaction IDs used when navigating to prev/next transaction when viewing it in RHP */
549+
TRANSACTION_THREAD_NAVIGATION_TRANSACTION_IDS: 'transactionThreadNavigationTransactionIDs',
550550

551551
/** Timestamp of the last login on iOS */
552552
NVP_LAST_ECASH_IOS_LOGIN: 'nvp_lastECashIOSLogin',
@@ -1205,7 +1205,7 @@ type OnyxValuesMapping = {
12051205
[ONYXKEYS.NVP_LAST_ECASH_ANDROID_LOGIN]: string;
12061206
[ONYXKEYS.NVP_LAST_IPHONE_LOGIN]: string;
12071207
[ONYXKEYS.NVP_LAST_ANDROID_LOGIN]: string;
1208-
[ONYXKEYS.TRANSACTION_THREAD_NAVIGATION_REPORT_IDS]: string[];
1208+
[ONYXKEYS.TRANSACTION_THREAD_NAVIGATION_TRANSACTION_IDS]: string[];
12091209
[ONYXKEYS.ONBOARDING_USER_REPORTED_INTEGRATION]: OnboardingAccounting;
12101210
[ONYXKEYS.HYBRID_APP]: OnyxTypes.HybridApp;
12111211
};

0 commit comments

Comments
 (0)