Skip to content

Commit

Permalink
remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Mar 21, 2024
1 parent 8b604f0 commit c286f12
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/showcase/doc/icons/listdoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class ListDoc {
onFilter(event: KeyboardEvent): void {
let searchText = (<HTMLInputElement>event.target).value;
let sanitizedInput = searchText?.replace(/[^\w\s]/gi, '').replace(/\s/g, '');
const filteredIcons = [];

if (!searchText) {
this.filteredIcons = this.icons;
Expand Down

0 comments on commit c286f12

Please sign in to comment.