We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 746e577 commit 8440edbCopy full SHA for 8440edb
1 file changed
‎src/commands/onboarding/index.ts‎
@@ -19,6 +19,7 @@ export const onboardingCommand = createCommand({
19
});
20
return;
21
}
22
+ // @ts-expect-error: This command isn't used and shouldn't affect anything, onboarding roles are TBD
23
const onboardingRole = guild.roles.cache.get(config.onboarding.roleId);
24
if (!onboardingRole) {
25
await interaction.reply({
@@ -27,6 +28,7 @@ export const onboardingCommand = createCommand({
27
28
29
30
31
+ // @ts-expect-error: This command isn't used and shouldn't affect anything, onboarding channels are TBD
32
const onboardingChannel = guild.channels.cache.get(config.onboarding.channelId);
33
if (!onboardingChannel || !onboardingChannel.isSendable()) {
34
0 commit comments