From f8bd41dfce465e4e686e4d88f24cec3bfded2f42 Mon Sep 17 00:00:00 2001 From: thelullabyy <182625428+thelullabyy@users.noreply.github.com> Date: Wed, 18 Mar 2026 15:47:10 +0700 Subject: [PATCH] fix: Stray 0 displayed in expense details panel --- src/components/ReportActionItem/MoneyReportView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ReportActionItem/MoneyReportView.tsx b/src/components/ReportActionItem/MoneyReportView.tsx index 12abccbdd9b40..ed8946cc980ec 100644 --- a/src/components/ReportActionItem/MoneyReportView.tsx +++ b/src/components/ReportActionItem/MoneyReportView.tsx @@ -165,7 +165,7 @@ function MoneyReportView({ {!isClosedExpenseReportWithNoExpenses && ( <> {(isPaidGroupPolicyExpenseReport || isInvoiceReport) && - policy?.areReportFieldsEnabled && + !!policy?.areReportFieldsEnabled && (!isCombinedReport || !isOnlyTitleFieldEnabled) && sortedPolicyReportFields.map((reportField) => { if (shouldHideSingleReportField(reportField)) {