From d9225c872de154555b9bb2f40d13cd6377e5bd18 Mon Sep 17 00:00:00 2001 From: nkdengineer Date: Mon, 23 Dec 2024 16:50:19 +0700 Subject: [PATCH] Not show receipt scan in progress --- src/components/ReportActionItem/ReportPreview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ReportActionItem/ReportPreview.tsx b/src/components/ReportActionItem/ReportPreview.tsx index 79497e5fab88..b1f7047ccd6f 100644 --- a/src/components/ReportActionItem/ReportPreview.tsx +++ b/src/components/ReportActionItem/ReportPreview.tsx @@ -401,7 +401,7 @@ function ReportPreview({ } } if (shouldShowScanningSubtitle) { - return {shouldShow: true, messageIcon: Expensicons.ReceiptScan, messageDescription: translate('iou.receiptScanInProgress')}; + return {shouldShow: false, messageIcon: Expensicons.ReceiptScan, messageDescription: translate('iou.receiptScanInProgress')}; } if (shouldShowPendingSubtitle) { return {shouldShow: true, messageIcon: Expensicons.CreditCardHourglass, messageDescription: translate('iou.transactionPending')};