diff --git a/interactionHandlers/common/resetPasswordDialog.js b/interactionHandlers/common/resetPasswordDialog.js index a19e473..f67d9a8 100644 --- a/interactionHandlers/common/resetPasswordDialog.js +++ b/interactionHandlers/common/resetPasswordDialog.js @@ -21,18 +21,19 @@ module.exports.execute = async (interaction) => { 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: 4, // Text Input + customId: 'newPassword', + label: "New Password. Leave blank for random.", + style: 1, + min_length: 6, + max_length: 64, + placeholder: 'New Password', + required: false + } ] } ]