diff --git a/src/pages/home/report/ReportActionItem.tsx b/src/pages/home/report/ReportActionItem.tsx index 2716fedcf59a..252abedc48c4 100644 --- a/src/pages/home/report/ReportActionItem.tsx +++ b/src/pages/home/report/ReportActionItem.tsx @@ -752,15 +752,18 @@ function ReportActionItem({ } if (ReportUtils.isExpenseReport(report) || ReportUtils.isIOUReport(report)) { return ( - + // eslint-disable-next-line react/jsx-no-useless-fragment + <> {transactionThreadReport && !isEmptyObject(transactionThreadReport) ? ( <> {transactionCurrency !== report.currency && ( - + + + )} ) : ( - + + + )} - + ); }