From 80fa882204c83059386e296caf782043b4155f2c Mon Sep 17 00:00:00 2001 From: AyushMishra Date: Tue, 17 Mar 2026 21:51:16 +0530 Subject: [PATCH] task/Eliminate onDestroy lifecycle hook from the landing page component --- apps/client/src/app/pages/landing/landing-page.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/app/pages/landing/landing-page.component.ts b/apps/client/src/app/pages/landing/landing-page.component.ts index b026eeaac..5eec1c25c 100644 --- a/apps/client/src/app/pages/landing/landing-page.component.ts +++ b/apps/client/src/app/pages/landing/landing-page.component.ts @@ -7,6 +7,7 @@ import { GfLogoComponent } from '@ghostfolio/ui/logo'; import { GfLogoCarouselComponent } from '@ghostfolio/ui/logo-carousel'; import { GfValueComponent } from '@ghostfolio/ui/value'; import { GfWorldMapChartComponent } from '@ghostfolio/ui/world-map-chart'; + import { CommonModule } from '@angular/common'; import { Component, OnInit } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; @@ -151,4 +152,4 @@ export class GfLandingPageComponent implements OnInit { public ngOnInit() { this.deviceType = this.deviceService.getDeviceInfo().deviceType; } -} \ No newline at end of file +}