Try changing authenticate call to match docs example

This commit is contained in:
Kalle
2024-04-14 11:06:35 +03:00
parent de504836a4
commit 4ecf225a9b

View File

@@ -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 }) => {