Another Fix

This commit is contained in:
Christopher Cookman 2025-11-13 09:02:06 -07:00
parent 95e1c66570
commit 5a0c18e434

View file

@ -20,18 +20,18 @@ module.exports.execute = async (interaction) => {
type: 1, // Action Row
components: [
{
type: 18, // Label
label: "New Password. Leave blank for random.",
component: {
type: 4, // Text Input
customId: 'newPassword',
style: 1,
min_length: 6,
max_length: 64,
placeholder: 'New Password',
required: false
}
}
type: 18, // Label
label: "New Password. Leave blank for random.",
components: [ {
type: 4, // Text Input
customId: 'newPassword',
style: 1,
min_length: 6,
max_length: 64,
placeholder: 'New Password',
required: false
} ]
}
]
}
]