From 68663511a2962c81f4e0a3a9a3562d5aa54e1ee9 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Tue, 20 May 2025 20:11:53 +0200 Subject: [PATCH] Use correct variable name --- src/libs/ReportUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 34addd703e9a..10e9a2416a42 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -7451,7 +7451,7 @@ function isEmptyReport(report: OnyxEntry): boolean { } // Get the `isEmpty` state from cached report attributes - const attributes = reportAttributes?.[report.reportID]; + const attributes = reportAttributesDerivedValue?.[report.reportID]; if (attributes) { return attributes.isEmpty; }