From d42ac8544fc2b763cfc119af8d746f4dd72c893c Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sat, 1 Apr 2023 14:01:52 +0300 Subject: [PATCH] chore: remove unneeded type annotation --- backend/src/commandTypes.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/commandTypes.ts b/backend/src/commandTypes.ts index 78188f8a..bdc25f17 100644 --- a/backend/src/commandTypes.ts +++ b/backend/src/commandTypes.ts @@ -113,8 +113,7 @@ export const commandTypes = { }, guildTextBasedChannel(value: string, context: CommandContext) { - // FIXME: Remove once Knub's types have been fixed - return messageCommandBaseTypeConverters.textChannel(value, context) as GuildTextBasedChannel; + return messageCommandBaseTypeConverters.textChannel(value, context); }, };