Skip to content

Commit c4a4076

Browse files
authored
Merge pull request #40673 from Expensify/Beamanator-cherry-pick-staging-40648-1
🍒 Cherry pick PR #40648 to staging 🍒
2 parents e6eed95 + 8c099fd commit c4a4076

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ android {
9898
minSdkVersion rootProject.ext.minSdkVersion
9999
targetSdkVersion rootProject.ext.targetSdkVersion
100100
multiDexEnabled rootProject.ext.multiDexEnabled
101-
versionCode 1001046318
102-
versionName "1.4.63-18"
101+
versionCode 1001046319
102+
versionName "1.4.63-19"
103103
// Supported language variants must be declared here to avoid from being removed during the compilation.
104104
// This also helps us to not include unnecessary language variants in the APK.
105105
resConfigs "en", "es"

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</dict>
4141
</array>
4242
<key>CFBundleVersion</key>
43-
<string>1.4.63.18</string>
43+
<string>1.4.63.19</string>
4444
<key>ITSAppUsesNonExemptEncryption</key>
4545
<false/>
4646
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/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.4.63.18</string>
22+
<string>1.4.63.19</string>
2323
</dict>
2424
</plist>

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>1.4.63</string>
1515
<key>CFBundleVersion</key>
16-
<string>1.4.63.18</string>
16+
<string>1.4.63.19</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</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": "1.4.63-18",
3+
"version": "1.4.63-19",
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/pages/iou/request/MoneyTemporaryForRefactorRequestParticipantsSelector.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function MoneyTemporaryForRefactorRequestParticipantsSelector({participants, onF
118118
false,
119119
{},
120120
[],
121-
canUseP2PDistanceRequests || iouRequestType !== CONST.IOU.REQUEST_TYPE.DISTANCE,
121+
(canUseP2PDistanceRequests || iouRequestType !== CONST.IOU.REQUEST_TYPE.DISTANCE) && ![CONST.IOU.ACTION.CATEGORIZE, CONST.IOU.ACTION.SHARE].includes(action),
122122
false,
123123
);
124124

@@ -363,7 +363,6 @@ function MoneyTemporaryForRefactorRequestParticipantsSelector({participants, onF
363363
iconWidth={variables.emptyWorkspaceIconWidth}
364364
iconHeight={variables.emptyWorkspaceIconHeight}
365365
title={translate('workspace.emptyWorkspace.notFound')}
366-
subtitle={translate('workspace.emptyWorkspace.description')}
367366
shouldShowLink={false}
368367
/>
369368
<Button
@@ -378,7 +377,13 @@ function MoneyTemporaryForRefactorRequestParticipantsSelector({participants, onF
378377
);
379378

380379
const isAllSectionsEmpty = _.every(sections, (section) => section.data.length === 0);
381-
if ([CONST.IOU.ACTION.CATEGORIZE, CONST.IOU.ACTION.SHARE].includes(action) && isAllSectionsEmpty && didScreenTransitionEnd && searchTerm.trim() === '') {
380+
if (
381+
[CONST.IOU.ACTION.CATEGORIZE, CONST.IOU.ACTION.SHARE].includes(action) &&
382+
isAllSectionsEmpty &&
383+
didScreenTransitionEnd &&
384+
debouncedSearchTerm.trim() === '' &&
385+
areOptionsInitialized
386+
) {
382387
return renderEmptyWorkspaceView();
383388
}
384389

0 commit comments

Comments
 (0)