diff --git a/src/pages/home/report/ReportActionItem.tsx b/src/pages/home/report/ReportActionItem.tsx index 4377ff7e55b1..31019b60aefb 100644 --- a/src/pages/home/report/ReportActionItem.tsx +++ b/src/pages/home/report/ReportActionItem.tsx @@ -753,18 +753,15 @@ 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 && ( - - - + )} ) : ( - - - + )} - + ); }