diff --git a/src/pages/home/report/ReportActionsView.tsx b/src/pages/home/report/ReportActionsView.tsx index 8cde74a1274f..99fa266aa0de 100755 --- a/src/pages/home/report/ReportActionsView.tsx +++ b/src/pages/home/report/ReportActionsView.tsx @@ -495,7 +495,12 @@ function ReportActionsView({ const reportPreviewAction = ReportActionsUtils.getReportPreviewAction(report.chatReportID ?? '', report.reportID); const moneyRequestActions = reportActions.filter( - (action) => action.actionName === CONST.REPORT.ACTIONS.TYPE.IOU && action.originalMessage && action.originalMessage.type === CONST.IOU.REPORT_ACTION_TYPE.CREATE, + (action) => + action.actionName === CONST.REPORT.ACTIONS.TYPE.IOU && + action.originalMessage && + (action.originalMessage.type === CONST.IOU.REPORT_ACTION_TYPE.CREATE || + Boolean(action.originalMessage.type === CONST.IOU.REPORT_ACTION_TYPE.PAY && action.originalMessage.IOUDetails) || + action.originalMessage.type === CONST.IOU.REPORT_ACTION_TYPE.TRACK), ); if (report.total && moneyRequestActions.length < (reportPreviewAction?.childMoneyRequestCount ?? 0) && isEmptyObject(transactionThreadReport)) {