From ba20ac6efef80d7b51628bd773c3bc093d2b3260 Mon Sep 17 00:00:00 2001 From: PineappleFan Date: Mon, 13 Mar 2023 11:26:13 +0000 Subject: [PATCH] Variable was only used in a console.log --- src/commands/nucleus/premium.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/nucleus/premium.ts b/src/commands/nucleus/premium.ts index 67b2be6..fed2964 100644 --- a/src/commands/nucleus/premium.ts +++ b/src/commands/nucleus/premium.ts @@ -93,7 +93,7 @@ const dmcallback = async (interaction: CommandInteraction, firstDescription: str if (i.isButton()) { closed = true; } else { - const response = await client.database.premium.removePremium(interaction.user.id, i.values[0]!); + await client.database.premium.removePremium(interaction.user.id, i.values[0]!); } } while (!closed); await interaction.deleteReply();