From 3e5102b796c07328e5ef14c422bd7952e6ec4411 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sat, 20 Jun 2026 12:18:17 +0700 Subject: [PATCH] feat(client): enforce immutability --- .../pages/portfolio/allocations/allocations-page.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts index d05df88cc..347953269 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts @@ -113,7 +113,7 @@ export class GfAllocationsPageComponent implements OnInit { }; }; protected topHoldings: HoldingWithParents[]; - protected UNKNOWN_KEY = UNKNOWN_KEY; + protected readonly UNKNOWN_KEY = UNKNOWN_KEY; protected user: User; protected worldMapChartFormat: string;