Skip to content

Commit 594347d

Browse files
committed
fix: fix lint error
1 parent 0d9804f commit 594347d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/app/themes-screen/starter.component.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, OnDestroy, OnInit } from '@angular/core';
1+
import { Component, OnInit } from '@angular/core';
22
import { NbMediaBreakpoint } from '@nebular/theme';
33
import { Router } from '@angular/router';
44
import { AnalyticsService } from '../@core/utils';
@@ -11,7 +11,7 @@ import { MetadataService } from '../@core/utils/metadata.service';
1111
templateUrl: './starter.component.html',
1212
styleUrls: ['./starter.component.scss'],
1313
})
14-
export class NgxStarterComponent implements OnDestroy, OnInit {
14+
export class NgxStarterComponent implements OnInit {
1515
breakpoint: NbMediaBreakpoint;
1616
breakpoints: any;
1717

@@ -70,7 +70,4 @@ export class NgxStarterComponent implements OnDestroy, OnInit {
7070
trackEmailClick() {
7171
this.analytics.trackEvent('clickContactEmail', 'click');
7272
}
73-
74-
ngOnDestroy() {
75-
}
7673
}

0 commit comments

Comments
 (0)