From 1d0fab8ec5dd4349cfaa0c0dcca200a0bdd88065 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Tue, 10 Sep 2024 16:47:25 +0100 Subject: [PATCH] force login --- src/app/api/auth/[...nextauth]/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/auth/[...nextauth]/route.ts b/src/app/api/auth/[...nextauth]/route.ts index 8ef6fa3b..e7cee255 100644 --- a/src/app/api/auth/[...nextauth]/route.ts +++ b/src/app/api/auth/[...nextauth]/route.ts @@ -41,7 +41,7 @@ export const AuthOptions: NextAuthOptions = { authorization: { params: { scope: "openid profile offline_access", - prompt: "consent", + prompt: "login", }, }, }),