Skip to content

Commit 42b04d6

Browse files
committed
Merge branch 'main' into korytko/fix-link-in-header
2 parents 54232d4 + 7133883 commit 42b04d6

23 files changed

Lines changed: 145 additions & 85 deletions

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 1009016003
118-
versionName "9.1.60-3"
117+
versionCode 1009016004
118+
versionName "9.1.60-4"
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.60.3</string>
47+
<string>9.1.60.4</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.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.60.3</string>
16+
<string>9.1.60.4</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.60</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.60.3</string>
16+
<string>9.1.60.4</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.1.60-3",
3+
"version": "9.1.60-4",
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/CONST.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -821,6 +821,10 @@ const CONST = {
821821
NEWDOT_MANAGER_MCTEST: 'newDotManagerMcTest',
822822
NEW_DOT_TALK_TO_AI_SALES: 'newDotTalkToAISales',
823823
CUSTOM_RULES: 'customRules',
824+
/**
825+
* @deprecated
826+
* This will be fully cleaned up in https://github.com/Expensify/App/issues/63254
827+
* */
824828
TABLE_REPORT_VIEW: 'tableReportView',
825829
WALLET: 'newdotWallet',
826830
GLOBAL_REIMBURSEMENTS_ON_ND: 'globalReimbursementsOnND',

src/components/MoneyReportHeader.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ function MoneyReportHeader({
651651
reportActions,
652652
policies,
653653
isBetaEnabled(CONST.BETAS.RETRACT_NEWDOT),
654-
isBetaEnabled(CONST.BETAS.TABLE_REPORT_VIEW),
655654
isBetaEnabled(CONST.BETAS.NEW_DOT_SPLITS),
656655
);
657656
}, [moneyRequestReport, transactions, violations, policy, reportNameValuePairs, reportActions, policies, isBetaEnabled]);
@@ -833,7 +832,6 @@ function MoneyReportHeader({
833832
setIsDeleteReportModalVisible(true);
834833
}
835834
},
836-
shouldShow: isBetaEnabled(CONST.BETAS.TABLE_REPORT_VIEW),
837835
},
838836
[CONST.REPORT.SECONDARY_ACTIONS.RETRACT]: {
839837
text: translate('iou.undoSubmit'),

src/components/Search/SearchList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ type SearchListProps = Pick<FlatListPropsWithLayout<SearchListItem>, 'onScroll'
4949
SearchTableHeader?: React.JSX.Element;
5050

5151
/** Callback to fire when a row is pressed */
52-
onSelectRow: (item: SearchListItem, isOpenedAsReport?: boolean) => void;
52+
onSelectRow: (item: SearchListItem) => void;
5353

5454
/** Whether this is a multi-select list */
5555
canSelectMultiple: boolean;

0 commit comments

Comments
 (0)