fix: fix lint error

This commit is contained in:
d.strigo 2023-02-15 12:26:42 +01:00
parent 48aeda5077
commit ce5713ff13

View file

@ -1,4 +1,4 @@
import { Component, OnDestroy, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { NbMediaBreakpoint } from '@nebular/theme'; import { NbMediaBreakpoint } from '@nebular/theme';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { AnalyticsService } from '../@core/utils'; import { AnalyticsService } from '../@core/utils';
@ -11,7 +11,7 @@ import { MetadataService } from '../@core/utils/metadata.service';
templateUrl: './starter.component.html', templateUrl: './starter.component.html',
styleUrls: ['./starter.component.scss'], styleUrls: ['./starter.component.scss'],
}) })
export class NgxStarterComponent implements OnDestroy, OnInit { export class NgxStarterComponent implements OnInit {
breakpoint: NbMediaBreakpoint; breakpoint: NbMediaBreakpoint;
breakpoints: any; breakpoints: any;
@ -70,7 +70,4 @@ export class NgxStarterComponent implements OnDestroy, OnInit {
trackEmailClick() { trackEmailClick() {
this.analytics.trackEvent('clickContactEmail', 'click'); this.analytics.trackEvent('clickContactEmail', 'click');
} }
ngOnDestroy() {
}
} }