From b2e402fe7e9488140b5aa9956afd1c03d38be24c Mon Sep 17 00:00:00 2001 From: Jack Senyitko Date: Thu, 11 Dec 2025 14:47:46 -0500 Subject: [PATCH] duplicate removal --- src/libs/ReportSecondaryActionUtils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libs/ReportSecondaryActionUtils.ts b/src/libs/ReportSecondaryActionUtils.ts index d0c6437889b38..3fbbce02710c0 100644 --- a/src/libs/ReportSecondaryActionUtils.ts +++ b/src/libs/ReportSecondaryActionUtils.ts @@ -832,7 +832,8 @@ function getSecondaryTransactionThreadActions( 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) { options.push(CONST.REPORT.TRANSACTION_SECONDARY_ACTIONS.DUPLICATE); }