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();