Skip to content

Commit

Permalink
fix: remove empty space created for response_type param in authz url …
Browse files Browse the repository at this point in the history
…created by admin ui #55
  • Loading branch information
duttarnab committed Feb 9, 2022
1 parent 484caed commit 85f2ca5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions admin-ui/app/utils/AppAuthProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ class AppAuthProvider extends Component {
console.warn('Parameters to process authz code flow are missing.')
return
}
return `${authzBaseUrl}?response_type=${responseType}
&redirect_uri=${redirectUrl}&client_id=${clientId}&scope=${scope}&state=${state}&nonce=${nonce}`
return `${authzBaseUrl}?response_type=${responseType}&redirect_uri=${redirectUrl}&client_id=${clientId}&scope=${scope}&state=${state}&nonce=${nonce}`
}
constructor() {
super()
Expand Down

0 comments on commit 85f2ca5

Please sign in to comment.