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 []; }