From 5389f6184eabfd244bb68b90dc5c4277d4d15a23 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sat, 23 May 2026 12:20:38 +0700 Subject: [PATCH] fix(client): resolve errors --- .../app/components/home-summary/home-summary.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/app/components/home-summary/home-summary.component.ts b/apps/client/src/app/components/home-summary/home-summary.component.ts index 60960480d..cacc3c88c 100644 --- a/apps/client/src/app/components/home-summary/home-summary.component.ts +++ b/apps/client/src/app/components/home-summary/home-summary.component.ts @@ -104,7 +104,10 @@ export class GfHomeSummaryComponent implements OnInit { .fetchPortfolioDetails() .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(({ summary }) => { - this.summary = summary; + if (summary) { + this.summary = summary; + } + this.isLoading = false; this.changeDetectorRef.markForCheck();