Tickets! and a lot of bug fixes
diff --git a/src/commands/help.ts b/src/commands/help.ts
index c9bba7d..767ca46 100644
--- a/src/commands/help.ts
+++ b/src/commands/help.ts
@@ -8,13 +8,13 @@
const callback = async (interaction: CommandInteraction): Promise<void> => {
interaction.reply({components: [new ActionRowBuilder<ButtonBuilder>().addComponents(
new ButtonBuilder()
- .setLabel("Verify")
+ .setLabel("Create ticket")
.setStyle(ButtonStyle.Primary)
- .setCustomId("verifybutton")
+ .setCustomId("createticket")
)]}); // TODO: FINISH THIS FOR RELEASE
};
-const check = (_interaction: CommandInteraction) => {
+const check = () => {
return true;
};