From 87224565953af0a63114a4c980aa5963c14458e5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 22 Aug 2025 20:19:52 +0200 Subject: [PATCH] Fix #10804 --- app/Support/JsonApi/Enrichments/AccountEnrichment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/JsonApi/Enrichments/AccountEnrichment.php b/app/Support/JsonApi/Enrichments/AccountEnrichment.php index c1a162d8fc..a5d6643908 100644 --- a/app/Support/JsonApi/Enrichments/AccountEnrichment.php +++ b/app/Support/JsonApi/Enrichments/AccountEnrichment.php @@ -249,7 +249,7 @@ class AccountEnrichment implements EnrichmentInterface 'opening_balance_date' => null, 'opening_balance_amount' => null, 'account_number' => null, - 'notes' => $notes[$id] ?? null, + 'notes' => $this->notes[$id] ?? null, 'last_activity' => $this->lastActivities[$id] ?? null, ];