diff --git a/server/plugins/irc-events/message.ts b/server/plugins/irc-events/message.ts index ed697463..21e3bffc 100644 --- a/server/plugins/irc-events/message.ts +++ b/server/plugins/irc-events/message.ts @@ -167,7 +167,6 @@ export default function (irc, network) { while ((match = nickRegExp.exec(data.message))) { if (chan.findUser(match[1])) { - // @ts-expect-error Type 'string' is not assignable to type '{ mode: string; }'.ts(2345) msg.users.push(match[1]); } }