Skip to content

Commit

Permalink
Merge pull request #13 from MrStickyPiston/patch-1
Browse files Browse the repository at this point in the history
bump Max domain length to 64, min to 2
  • Loading branch information
wdhdev authored Jul 6, 2024
2 parents b94098f + 0ada54a commit 62e1ad1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions events/buttons/registerDomain.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ module.exports = async function (interaction) {
const domainCheck = new TextInputBuilder()
.setCustomId('DomainCheck')
.setPlaceholder('Enter a subdomain')
.setMinLength(3)
.setMaxLength(17)
.setMinLength(2)
.setMaxLength(64)
.setRequired(true)
.setLabel('Enter the subdomain you want to register')
.setStyle("Short");
Expand All @@ -19,4 +19,4 @@ module.exports = async function (interaction) {



}
}

0 comments on commit 62e1ad1

Please sign in to comment.