diff --git a/src/components/ReportActionItem/MoneyReportView.tsx b/src/components/ReportActionItem/MoneyReportView.tsx
index d54d456507d3..61d51401c1b7 100644
--- a/src/components/ReportActionItem/MoneyReportView.tsx
+++ b/src/components/ReportActionItem/MoneyReportView.tsx
@@ -99,18 +99,18 @@ function MoneyReportView({report, policy, isCombinedReport = false, shouldShowTo
const renderThreadDivider = useMemo(
() =>
- shouldHideThreadDividerLine && !isCombinedReport ? (
+ shouldHideThreadDividerLine ? (
) : (
),
- [shouldHideThreadDividerLine, report?.reportID, styles.reportHorizontalRule, isCombinedReport],
+ [shouldHideThreadDividerLine, report?.reportID, styles.reportHorizontalRule],
);
return (
diff --git a/src/pages/home/report/ReportActionItemContentCreated.tsx b/src/pages/home/report/ReportActionItemContentCreated.tsx
index 7c0016b56338..3751c3f67403 100644
--- a/src/pages/home/report/ReportActionItemContentCreated.tsx
+++ b/src/pages/home/report/ReportActionItemContentCreated.tsx
@@ -157,7 +157,7 @@ function ReportActionItemContentCreated({contextValue, parentReportAction, trans
isCombinedReport
pendingAction={action?.pendingAction}
shouldShowTotal={transaction ? transactionCurrency !== report?.currency : false}
- shouldHideThreadDividerLine={shouldHideThreadDividerLine}
+ shouldHideThreadDividerLine={false}
/>