Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/libs/ReportSecondaryActionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@
}

// Disabled for now to fix deploy blockers. Will be re-enabled in https://github.com/Expensify/App/pull/77343
if (isDuplicateAction(report, reportTransactions) && false) {

Check warning on line 755 in src/libs/ReportSecondaryActionUtils.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Unexpected constant condition
options.push(CONST.REPORT.SECONDARY_ACTIONS.DUPLICATE);
}

Expand Down Expand Up @@ -832,7 +832,8 @@
options.push(CONST.REPORT.TRANSACTION_SECONDARY_ACTIONS.MERGE);
}

if (isDuplicateAction(parentReport, [reportTransaction])) {
// Disabled for now to fix deploy blockers. Will be re-enabled in https://github.com/Expensify/App/pull/77343
if (isDuplicateAction(parentReport, [reportTransaction]) && false) {

Check warning on line 836 in src/libs/ReportSecondaryActionUtils.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Unexpected constant condition
options.push(CONST.REPORT.TRANSACTION_SECONDARY_ACTIONS.DUPLICATE);
}

Expand Down
Loading