diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index b885ecd73423..7e27f25bdd99 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -5423,7 +5423,7 @@ function shouldDisplayTransactionThreadViolations( return false; } const {IOUReportID} = ReportActionsUtils.getOriginalMessage(parentReportAction) ?? {}; - if (isSettled(IOUReportID)) { + if (isSettled(IOUReportID) || isReportApproved(IOUReportID?.toString())) { return false; } return doesTransactionThreadHaveViolations(report, transactionViolations, parentReportAction);