diff --git a/packages/jellycommands/src/commands/types/commands/options.ts b/packages/jellycommands/src/commands/types/commands/options.ts index 8faa8e4c..3d29059e 100644 --- a/packages/jellycommands/src/commands/types/commands/options.ts +++ b/packages/jellycommands/src/commands/types/commands/options.ts @@ -30,7 +30,7 @@ export const schema = baseSchema.append({ 'Slash Command names must be 1 - 32 characters, all lowercase with no witespaces or special chars', }), - description: Joi.string().max(100).required(), + description: Joi.string().min(1).max(100).required(), options: Joi.array(), });