From a4299318b0e2571bf0698aec9187bbd443588f36 Mon Sep 17 00:00:00 2001 From: Nix Krystik Date: Thu, 28 May 2026 21:09:05 +0800 Subject: [PATCH] prettier and i couldn't agree on styling so i disabled it. ended up missing a semi-colon. javascript is javascript and ignores this now :D --- src/commands/private-help.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/private-help.ts b/src/commands/private-help.ts index 772b58a..1f77610 100644 --- a/src/commands/private-help.ts +++ b/src/commands/private-help.ts @@ -39,7 +39,7 @@ export default { .addComponents(button); await interaction.channel.send({ components: [row], content }); - await Database.updateGuildSettings(interaction.guildId, 'private_help_channel_id', interaction.channelId) + await Database.updateGuildSettings(interaction.guildId, 'private_help_channel_id', interaction.channelId); interaction.reply({ flags: [MessageFlags.Ephemeral], content: 'Sent.' }); } };