From 50015218a68964c6c57bde6b2dc03fa3ea801068 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Thu, 13 Nov 2025 09:04:17 -0700 Subject: [PATCH] Another Fix --- .../common/resetPasswordDialog.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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 + } ] } ]