Skip to content

Commit acbd1bf

Browse files
committed
Fix issues
1 parent 221e0d8 commit acbd1bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/frontend/src/lib/utils/openID.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ const requestWithRedirect = async (
103103
authURL.searchParams.set("response_mode", "fragment");
104104
authURL.searchParams.set("client_id", config.clientId);
105105
authURL.searchParams.set("redirect_uri", redirectURL.href);
106-
// authURL.searchParams.set("scope", "openid profile email");
107-
authURL.searchParams.set("scope", "openid");
106+
authURL.searchParams.set("scope", "openid profile email");
108107
authURL.searchParams.set("state", state);
109108
authURL.searchParams.set("nonce", options.nonce);
110109
if (options.mediation === "required" && isNullish(options.loginHint)) {

0 commit comments

Comments
 (0)