We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5972ce9 commit 1d5e5bfCopy full SHA for 1d5e5bf
1 file changed
src/commands/moderation/repel.ts
@@ -133,7 +133,7 @@ const getTextChannels = (interaction: ChatInputCommandInteraction) => {
133
const channels = getPublicChannels(interaction.guild).map((c) => c);
134
return [
135
interaction.channel as TextChannel,
136
- ...channels.filter((c) => c.id !== interaction.channelId),
+ ...channels.filter((channel) => channel.id !== interaction.channelId),
137
];
138
};
139
0 commit comments