Skip to content

Commit

Permalink
fix(ask.builder.ts): increase max length of prompt option from 200 to…
Browse files Browse the repository at this point in the history
… 500 characters
  • Loading branch information
Steellgold committed Jun 12, 2023
1 parent 53758bc commit 74898e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/ask/ask.builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const slashCommand: SlashCommandDefition = new SlashCommandBuilder()
.setDescription(ask.options.prompt.description["en-US"])
.setDescriptionLocalizations(ask.options.prompt.description)
.setRequired(true)
.setMaxLength(200))
.setMaxLength(500))
.addStringOption(new SlashCommandStringOption()
.setName("context")
.setDescription(ask.options.context.description["en-US"])
Expand Down

0 comments on commit 74898e1

Please sign in to comment.