From 643ff6f9988673dcb739ffb8b4dea37da718360f Mon Sep 17 00:00:00 2001 From: EthanHealy01 Date: Wed, 24 Sep 2025 15:11:52 +0100 Subject: [PATCH] linter --- frontend/src/hooks/useToolSections.ts | 1 - frontend/src/utils/toolSynonyms.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/frontend/src/hooks/useToolSections.ts b/frontend/src/hooks/useToolSections.ts index 93c8c5cb6..088a1ba52 100644 --- a/frontend/src/hooks/useToolSections.ts +++ b/frontend/src/hooks/useToolSections.ts @@ -1,7 +1,6 @@ import { useMemo } from 'react'; import { SUBCATEGORY_ORDER, SubcategoryId, ToolCategoryId, ToolRegistryEntry } from '../data/toolsTaxonomy'; -import { idToWords, normalizeForSearch } from '../utils/fuzzySearch'; import { useTranslation } from 'react-i18next'; type SubcategoryIdMap = { diff --git a/frontend/src/utils/toolSynonyms.ts b/frontend/src/utils/toolSynonyms.ts index f3660c7a5..42211dab2 100644 --- a/frontend/src/utils/toolSynonyms.ts +++ b/frontend/src/utils/toolSynonyms.ts @@ -17,7 +17,6 @@ export const getTranslatedSynonyms = (t: TFunction, toolId: string): string[] => .map((tag: string) => tag.trim()) .filter((tag: string) => tag.length > 0); } catch (error) { - // eslint-disable-next-line no-console console.warn(`Failed to get translated synonyms for tool ${toolId}:`, error); return []; }