Skip to content

Commit ae407dc

Browse files
committed
remove unused imports
1 parent 320e1bf commit ae407dc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/v2/commands/repel/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import {
22
ApplicationCommandOptionType,
33
ChannelType,
44
EmbedBuilder,
5-
GuildChannel,
65
PermissionFlagsBits,
7-
TextBasedChannel,
86
User,
97
type Client,
108
type CommandInteraction,
@@ -19,7 +17,7 @@ import {
1917
REPEL_DEFAULT_TIMEOUT,
2018
} from '../../env';
2119
import { DiscordAPIErrorCode } from '../../../enums';
22-
import { logEmbed, logSimple } from '../../utils/channel-logger';
20+
import { logEmbed } from '../../utils/channel-logger';
2321

2422
enum RepelCommandOptions {
2523
TARGET = 'target',
@@ -164,7 +162,6 @@ export const repelInteraction: CommandDataWithHandler = {
164162
RepelCommandOptions.TARGET,
165163
false,
166164
)?.user as User;
167-
console.log('Target User:', targetUser);
168165

169166
let targetGuildMember: GuildMember | null = null;
170167
let userNotInServer = false;

0 commit comments

Comments
 (0)