Skip to content

Commit

Permalink
fix: use authoriztion_url for authz request #47
Browse files Browse the repository at this point in the history
  • Loading branch information
duttarnab committed Feb 8, 2022
1 parent b92bcc6 commit 8d794d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin-ui/app/utils/AppAuthProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AppAuthProvider extends Component {
console.warn('Parameters to process authz code flow are missing.')
return
}
return `${authzBaseUrl}?acr_values=${acrValues}&response_type=${responseType}
return `${authzBaseUrl}?response_type=${responseType}
&redirect_uri=${redirectUrl}&client_id=${clientId}&scope=${scope}&state=${state}&nonce=${nonce}`
}
constructor() {
Expand Down

0 comments on commit 8d794d5

Please sign in to comment.