Skip to content

Commit

Permalink
fix: Change redirect uri from origin.location to origin.href
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogasp committed Feb 8, 2024
1 parent 569c014 commit 338f3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const oidcConfig: AuthProviderProps = {
client_id: window.env.IAM_CLIENT_ID,
client_secret: window.env.IAM_CLIENT_SECRET,
scope: window.env.IAM_SCOPE,
redirect_uri: window.location.origin,
redirect_uri: window.location.href,
};

const iamConfig: IAMProviderProps = {
Expand Down

0 comments on commit 338f3c9

Please sign in to comment.