From a984daddfe78472f576838ffa01a36f244445a2b Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 5 Dec 2025 20:48:18 +0100 Subject: [PATCH] fix(discord-bot): remove unexpected top level return --- apps/discord-bot/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/discord-bot/src/index.ts b/apps/discord-bot/src/index.ts index 0b8872a..1d733af 100644 --- a/apps/discord-bot/src/index.ts +++ b/apps/discord-bot/src/index.ts @@ -36,7 +36,7 @@ switch (mode.type) { default: { // @ts-ignore - return logger.fatal(`ERROR: Not implemented: '${mode.type}'`); + logger.fatal(`ERROR: Not implemented: '${mode.type}'`); } }