diff --git a/client/js/commands/join.ts b/client/js/commands/join.ts index 5bb40aec..1932b806 100644 --- a/client/js/commands/join.ts +++ b/client/js/commands/join.ts @@ -13,7 +13,6 @@ function input(args: string[]) { if (chanTypes && chanTypes.length > 0) { for (let c = 0; c < channelList.length; c++) { if (!chanTypes.includes(channelList[c][0])) { - // eslint-disable-next-line @typescript-eslint/restrict-plus-operands channelList[c] = chanTypes[0] + channelList[c]; } } @@ -27,7 +26,6 @@ function input(args: string[]) { switchToChannel(chan); } else { socket.emit("input", { - // eslint-disable-next-line @typescript-eslint/restrict-template-expressions text: `/join ${channels} ${args.length > 1 ? args[1] : ""}`, target: store.state.activeChannel.channel.id, });