fix: missing meta

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-10 00:56:05 +00:00
parent 10ff91f7e4
commit e2c6d02fe6
11 changed files with 45 additions and 36 deletions

View File

@@ -5,9 +5,10 @@ import { lazy } from 'react';
export const tool = defineTool('list', {
name: 'Wrap',
path: 'wrap',
icon: '',
description: '',
shortDescription: '',
icon: 'mdi:wrap',
description:
'A tool to wrap each item in a list with custom prefix and suffix characters. Useful for formatting lists for code, markup languages, or presentation.',
shortDescription: 'Add characters around list items.',
keywords: ['wrap'],
component: lazy(() => import('./index'))
});