Skip to content

Commit

Permalink
update page-size option description to reflect maximum value of 30
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazzajenko committed Aug 28, 2024
1 parent 8e7e12c commit a87078c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class implements Command {
.setRequired(false))
.addIntegerOption(option => option
.setName('page-size')
.setDescription('how many items to display per page [default: 10, max: 50]')
.setDescription('how many items to display per page [default: 10, max: 30]')
.setMinValue(1)
.setMaxValue(30)
.setRequired(false));
Expand Down

0 comments on commit a87078c

Please sign in to comment.