feat: remove duplicate lines

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-02 02:58:50 +00:00
parent 1143672123
commit 71e052ab4d
11 changed files with 731 additions and 98 deletions

View File

@@ -6,7 +6,7 @@ interface ToolOptions {
path: string;
component: LazyExoticComponent<JSXElementConstructor<ToolComponentProps>>;
keywords: string[];
icon?: IconifyIcon | string;
icon: IconifyIcon | string;
name: string;
description: string;
shortDescription: string;
@@ -26,7 +26,7 @@ export interface DefinedTool {
name: string;
description: string;
shortDescription: string;
icon?: IconifyIcon | string;
icon: IconifyIcon | string;
keywords: string[];
component: () => JSX.Element;
}