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,7 +5,8 @@ export const tool = defineTool('pdf', {
i18n: {
name: 'pdf:editor.title',
description: 'pdf:editor.description',
shortDescription: 'pdf:editor.shortDescription'
shortDescription: 'pdf:editor.shortDescription',
userTypes: ['General Users', 'Students', 'Developers']
},
path: 'editor',
@@ -26,6 +27,5 @@ export const tool = defineTool('pdf', {
'annotation',
'markup'
],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});