Browse Source

Merge remote-tracking branch 'origin/main' into task/portfolio-filter-type-safety

pull/6404/head
Kenrick Tandrian 2 days ago
parent
commit
c9d3aef832
  1. 12
      apps/client/src/app/pages/demo/demo-page.component.ts

12
apps/client/src/app/pages/demo/demo-page.component.ts

@ -3,9 +3,8 @@ import { InfoItem } from '@ghostfolio/common/interfaces';
import { NotificationService } from '@ghostfolio/ui/notifications'; import { NotificationService } from '@ghostfolio/ui/notifications';
import { DataService } from '@ghostfolio/ui/services'; import { DataService } from '@ghostfolio/ui/services';
import { Component, OnDestroy } from '@angular/core'; import { Component } from '@angular/core';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { Subject } from 'rxjs';
@Component({ @Component({
host: { class: 'page' }, host: { class: 'page' },
@ -13,11 +12,9 @@ import { Subject } from 'rxjs';
standalone: true, standalone: true,
templateUrl: './demo-page.html' templateUrl: './demo-page.html'
}) })
export class GfDemoPageComponent implements OnDestroy { export class GfDemoPageComponent {
public info: InfoItem; public info: InfoItem;
private unsubscribeSubject = new Subject<void>();
public constructor( public constructor(
private dataService: DataService, private dataService: DataService,
private notificationService: NotificationService, private notificationService: NotificationService,
@ -40,9 +37,4 @@ export class GfDemoPageComponent implements OnDestroy {
this.router.navigate(['/']); this.router.navigate(['/']);
} }
public ngOnDestroy() {
this.unsubscribeSubject.next();
this.unsubscribeSubject.complete();
}
} }

Loading…
Cancel
Save