Skip to content

Commit

Permalink
fix: links opened in new tabs should not redirect to base path (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Jan 7, 2025
1 parent 6f834a2 commit 3d833a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/oidc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const OIDC_CLIENT_ID = ENV.OIDC_CLIENT_ID || "frontend";
export const oidcClientSettings: OidcClientSettings = {
authority: OIDC_SERVER_URL,
client_id: OIDC_CLIENT_ID,
redirect_uri: window.location.origin,
redirect_uri: window.location.href,
post_logout_redirect_uri: window.location.origin,
response_type: "code",
loadUserInfo: true,
Expand Down

0 comments on commit 3d833a0

Please sign in to comment.