Skip to content

Commit 1d5e5bf

Browse files
committed
🔨 refactor: rename variable in getTextChannels function
1 parent 5972ce9 commit 1d5e5bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/moderation/repel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const getTextChannels = (interaction: ChatInputCommandInteraction) => {
133133
const channels = getPublicChannels(interaction.guild).map((c) => c);
134134
return [
135135
interaction.channel as TextChannel,
136-
...channels.filter((c) => c.id !== interaction.channelId),
136+
...channels.filter((channel) => channel.id !== interaction.channelId),
137137
];
138138
};
139139

0 commit comments

Comments
 (0)