Skip to content

Commit bf093b6

Browse files
committed
Merge remote-tracking branch 'upstream/main' into 83834-migrate-workspace-tags-settings-per-diem
2 parents 36b1e99 + da7adae commit bf093b6

10 files changed

Lines changed: 20 additions & 13 deletions

File tree

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009036000
115-
versionName "9.3.60-0"
114+
versionCode 1009036001
115+
versionName "9.3.60-1"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
resConfigs "en", "es"

docs/articles/new-expensify/connect-credit-cards/Import-Personal-Card-Transactions-From-a-Spreadsheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ Your file must include at least the following columns:
6161

6262
You’ll see an error message and won’t be able to proceed until the issue is resolved.
6363

64-
## Can I import additional spreadsheet later on the same card entry?
64+
## Can I import additional transactions to the same card?
6565

66-
No. To import additional transactions, you must repeat the import process.
66+
Yes. You can simply repeat the import process.
6767

6868
## Can I delete personal card spreadsheet imports?
6969

docs/articles/new-expensify/getting-started/Expensify-Home-Overview.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Home includes:
3333
- **Time-sensitive alerts** (when applicable)
3434
- **For you**
3535
- **Spend over time** (when applicable)
36-
- **Discover**
36+
- **Discover** (when applicable)
3737
- **Announcements**
3838
- **Assigned cards** (when applicable)
3939

@@ -85,6 +85,8 @@ The **Discover** section helps you get familiar with things you can do in Expens
8585

8686
This section includes a short demo that introduces key areas of the app and shows how different parts fit together. This can be helpful when you’re getting started or returning after some time away.
8787

88+
Once you’ve watched the demo, the **Discover** section is automatically hidden from Home.
89+
8890
---
8991

9092
## How the Announcements section works on Home
@@ -129,6 +131,10 @@ The **Time-sensitive** section only appears when there is an urgent issue or lim
129131

130132
The **Spend over time** section only appears if you are a Workspace Admin, Auditor, or approver on a paid workspace that has existing transactions. If you don't hold one of these roles, or your workspace has no transactions yet, this section won't be visible.
131133

134+
## Why don’t I see the Discover section?
135+
136+
The **Discover** section only appears until you’ve watched the demo. Once you’ve completed it, the section is automatically hidden from Home.
137+
132138
## Why don’t I see the Assigned cards section?
133139

134140
The **Assigned cards** section only appears if you have an active **Expensify Card** assigned to you.

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.3.60.0</string>
47+
<string>9.3.60.1</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.3.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.60.0</string>
16+
<string>9.3.60.1</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.3.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.60.0</string>
16+
<string>9.3.60.1</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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.3.60-0",
3+
"version": "9.3.60-1",
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.",

src/libs/ReportNameUtils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ import {
7272
getRenamedAction,
7373
getRenamedCardFeedMessage,
7474
getReportActionMessage as getReportActionMessageFromActionsUtils,
75+
getReportActionMessageText,
7576
getReportActionText,
7677
getSettlementAccountLockedMessage,
7778
getSubmitsToUpdateMessage,
@@ -472,7 +473,7 @@ function computeReportNameBasedOnReportAction(
472473
});
473474
}
474475
if (parentReportAction?.actionName === CONST.REPORT.ACTIONS.TYPE.RECEIPT_SCAN_FAILED) {
475-
return translate('iou.receiptScanningFailed');
476+
return getReportActionMessageText(parentReportAction) || translate('iou.receiptScanningFailed');
476477
}
477478

478479
if (isReimbursementDeQueuedOrCanceledAction(parentReportAction)) {

0 commit comments

Comments
 (0)