Thomas Kaul 2 days ago
committed by GitHub
parent
commit
bcb43e24de
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 12
      apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.component.ts

12
apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.component.ts

@ -1,6 +1,5 @@
import { Component, OnDestroy } from '@angular/core';
import { Component } from '@angular/core';
import { MarkdownModule } from 'ngx-markdown';
import { Subject } from 'rxjs';
@Component({
imports: [MarkdownModule],
@ -8,11 +7,4 @@ import { Subject } from 'rxjs';
styleUrls: ['./privacy-policy-page.scss'],
templateUrl: './privacy-policy-page.html'
})
export class GfPrivacyPolicyPageComponent implements OnDestroy {
private unsubscribeSubject = new Subject<void>();
public ngOnDestroy() {
this.unsubscribeSubject.next();
this.unsubscribeSubject.complete();
}
}
export class GfPrivacyPolicyPageComponent {}

Loading…
Cancel
Save