We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 221e0d8 commit acbd1bfCopy full SHA for acbd1bf
src/frontend/src/lib/utils/openID.ts
@@ -103,8 +103,7 @@ const requestWithRedirect = async (
103
authURL.searchParams.set("response_mode", "fragment");
104
authURL.searchParams.set("client_id", config.clientId);
105
authURL.searchParams.set("redirect_uri", redirectURL.href);
106
- // authURL.searchParams.set("scope", "openid profile email");
107
- authURL.searchParams.set("scope", "openid");
+ authURL.searchParams.set("scope", "openid profile email");
108
authURL.searchParams.set("state", state);
109
authURL.searchParams.set("nonce", options.nonce);
110
if (options.mediation === "required" && isNullish(options.loginHint)) {
0 commit comments