From 4ecf225a9b42b46f4586c4c9b150cdcac83c17f0 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 14 Apr 2024 11:06:35 +0300 Subject: [PATCH] Try changing authenticate call to match docs example --- app/features/auth/core/routes.server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/features/auth/core/routes.server.ts b/app/features/auth/core/routes.server.ts index 28d65a25e..a65b5a8dd 100644 --- a/app/features/auth/core/routes.server.ts +++ b/app/features/auth/core/routes.server.ts @@ -47,7 +47,7 @@ export const logInAction: ActionFunction = async ({ request }) => { "Login is temporarily disabled", ); - return authenticator.authenticate(DISCORD_AUTH_KEY, request); + return await authenticator.authenticate(DISCORD_AUTH_KEY, request); }; export const impersonateAction: ActionFunction = async ({ request }) => {