Fixing errors with userTypes

This commit is contained in:
AshAnand34
2025-07-18 15:03:26 -07:00
parent 9e41071c01
commit d5c71b479e
13 changed files with 32 additions and 24 deletions

View File

@@ -5,13 +5,13 @@ export const tool = defineTool('csv', {
i18n: {
name: 'csv:csvToXml.title',
description: 'csv:csvToXml.description',
shortDescription: 'csv:csvToXml.shortDescription'
shortDescription: 'csv:csvToXml.shortDescription',
userTypes: ['General Users', 'Students', 'Developers']
},
path: 'csv-to-xml',
icon: 'mdi-light:xml',
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
userTypes: ['Developers'],
component: lazy(() => import('./index'))
});