From a36742d485cdb78bea6772cfb66da2ee47a2bb4f Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Thu, 13 Nov 2025 08:57:58 -0700 Subject: [PATCH] Another Fix --- interactionHandlers/modals/resetPasswordModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactionHandlers/modals/resetPasswordModal.js b/interactionHandlers/modals/resetPasswordModal.js index f709341..61d3b60 100644 --- a/interactionHandlers/modals/resetPasswordModal.js +++ b/interactionHandlers/modals/resetPasswordModal.js @@ -11,7 +11,7 @@ module.exports.execute = async (interaction) => { return; } await interaction.deferReply({ ephemeral: true }); - const newPassword = interaction.fields.getTextInputValue('newPassword'); + console.log(JSON.stringify(interaction, null, 2)); let passwordToSet = newPassword; if (!newPassword || newPassword.trim() === '') { // Generate password based on process.env.PASSWORD_LENGTH and process.env.PASSWORD_CHARS or default to 32 alphanumeric with caps