Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pelord committed Mar 20, 2024
1 parent 1a47c1e commit cbc824e
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
ChangeDetectionStrategy,
Component,
Input,
OnDestroy,
OnInit,
TemplateRef
} from '@angular/core';
Expand Down Expand Up @@ -62,7 +61,7 @@ import { SearchResultPanelComponent } from './panels/search-results/search-resul
FilterPanelComponent
]
})
export class PanelsHandlerComponent implements OnInit, OnDestroy {
export class PanelsHandlerComponent implements OnInit {
public mobileMode$: Observable<boolean>;
public openedPanel: boolean = false;

Expand Down Expand Up @@ -100,8 +99,6 @@ export class PanelsHandlerComponent implements OnInit, OnDestroy {
});
}

ngOnDestroy() {}

handlePanels(value: boolean) {
this.openedPanel = value;
}
Expand Down

0 comments on commit cbc824e

Please sign in to comment.