From a954c845cf83a794009e2875e5719de874bed931 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Thu, 13 Nov 2025 09:05:17 -0700 Subject: [PATCH] Another Fix --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 01b1176..931ac50 100644 --- a/index.js +++ b/index.js @@ -140,7 +140,7 @@ client.on('interactionCreate', async interaction => { break; case Discord.InteractionType.ModalSubmit: console.log(JSON.stringify(interaction, null, 2, (key, value) => - typeof value === 'bigint' ? value.toString() : value + typeof value === 'BigInt' ? value.toString() : value )); const modal = require(`./interactionHandlers/modals/${interaction.customId}`);