diff --git a/src/libs/ReportActionsUtils.ts b/src/libs/ReportActionsUtils.ts index fd34ce56feaa..8b38c5c1503c 100644 --- a/src/libs/ReportActionsUtils.ts +++ b/src/libs/ReportActionsUtils.ts @@ -1763,7 +1763,7 @@ function getReopenedMessage(): string { } function getReceiptScanFailedMessage() { - return translateLocal('receipt.scanFailed'); + return translateLocal('iou.receiptScanningFailed'); } function getUpdateRoomDescriptionFragment(reportAction: ReportAction): Message { diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 74614d6a16a5..7fe95da7074a 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -4991,7 +4991,7 @@ function getReportActionMessage({ }); } if (reportAction.actionName === CONST.REPORT.ACTIONS.TYPE.RECEIPT_SCAN_FAILED) { - return translateLocal('receipt.scanFailed'); + return translateLocal('iou.receiptScanningFailed'); } if (isReimbursementDeQueuedOrCanceledAction(reportAction)) { diff --git a/src/pages/home/report/PureReportActionItem.tsx b/src/pages/home/report/PureReportActionItem.tsx index 55a96bf4e594..373ed3d3a2fa 100644 --- a/src/pages/home/report/PureReportActionItem.tsx +++ b/src/pages/home/report/PureReportActionItem.tsx @@ -1189,7 +1189,7 @@ function PureReportActionItem({ } else if (isActionOfType(action, CONST.REPORT.ACTIONS.TYPE.EXPORTED_TO_INTEGRATION)) { children = ; } else if (isActionOfType(action, CONST.REPORT.ACTIONS.TYPE.RECEIPT_SCAN_FAILED)) { - children = ; + children = ; } else if (isRenamedAction(action)) { const message = getRenamedAction(action, isExpenseReport(report)); children = ;