Skip to content

Commit

Permalink
fix: minor improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskari committed Aug 26, 2024
1 parent 41abccf commit 918b5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/authDataAtom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function createUserManager(
client_id: clientId,
authority: issuerUrl,
client_secret: clientSecret,
scope: `openid ${[...uniqueScopes].join(' ')}`,
scope: `openid${' ' + [...uniqueScopes].join(' ')}`,
response_type: 'code',
response_mode: 'query',
});
Expand Down

0 comments on commit 918b5c4

Please sign in to comment.