Still got errors and warnings, mostly the same and easy to fix
diff --git a/src/commands/nucleus/guide.ts b/src/commands/nucleus/guide.ts
index 5f2cde2..507730b 100644
--- a/src/commands/nucleus/guide.ts
+++ b/src/commands/nucleus/guide.ts
@@ -7,17 +7,17 @@
const command = (builder: SlashCommandSubcommandBuilder) =>
builder
- .setName("guide")
- .setDescription("Shows the welcome guide for the bot")
+ .setName("guide")
+ .setDescription("Shows the welcome guide for the bot");
const callback = async (interaction) => {
- guide(interaction.guild, interaction)
-}
+ guide(interaction.guild, interaction);
+};
const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
- return true
-}
+ return true;
+};
export { command };
export { callback };