diff --git a/src/services/dialogService.ts b/src/services/dialogService.ts index 791efba9d..cb3ee7e7a 100644 --- a/src/services/dialogService.ts +++ b/src/services/dialogService.ts @@ -512,7 +512,6 @@ export const useDialogService = () => { showAboutDialog, showExecutionErrorDialog, showTemplateWorkflowsDialog, - // showWorkflowTemplateSelectorDialog, showManagerDialog, showManagerProgressDialog, showApiNodesSignInDialog, diff --git a/src/utils/categoryIcons.ts b/src/utils/categoryIcons.ts index 223381bca..2d59cd8e2 100644 --- a/src/utils/categoryIcons.ts +++ b/src/utils/categoryIcons.ts @@ -50,23 +50,3 @@ export const getCategoryIcon = (categoryId: string): string => { // Return mapped icon or fallback to folder return iconMap[categoryId.toLowerCase()] || 'folder' } - -/** - * Maps category titles to their corresponding Lucide icon names - */ -export const getCategoryIconByTitle = (title: string): string => { - const titleMap: Record = { - 'Getting Started': 'graduation-cap', - 'Generation Type': 'sparkles', - 'Closed Source Models': 'hand-coins', - 'API Nodes': 'hand-coins', - 'Small Models': 'zap', - Performance: 'zap', - 'Mac Compatible': 'command', - 'LoRA Training': 'dumbbell', - Extensions: 'puzzle', - 'Tools & Building': 'wrench' - } - - return titleMap[title] || 'folder' -}