From c286f12f14d7ac2233771695a4b2ba0a5ed4f145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Thu, 21 Mar 2024 15:05:54 +0300 Subject: [PATCH] remove unused var --- src/app/showcase/doc/icons/listdoc.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/showcase/doc/icons/listdoc.ts b/src/app/showcase/doc/icons/listdoc.ts index d84750c3e71..825ca7374fe 100644 --- a/src/app/showcase/doc/icons/listdoc.ts +++ b/src/app/showcase/doc/icons/listdoc.ts @@ -51,7 +51,6 @@ export class ListDoc { onFilter(event: KeyboardEvent): void { let searchText = (event.target).value; let sanitizedInput = searchText?.replace(/[^\w\s]/gi, '').replace(/\s/g, ''); - const filteredIcons = []; if (!searchText) { this.filteredIcons = this.icons;