Skip to content

Commit

Permalink
fix(oidc): logout continue to run before redirecting (#1301) (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Feb 15, 2024
1 parent fcbb40d commit 8eb75d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oidc-client/src/location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface ILOidcLocation {

export class OidcLocation implements ILOidcLocation {
open(url:string) {
window.open(url, '_self');
window.location.href = url;
}

reload() {
Expand Down

0 comments on commit 8eb75d3

Please sign in to comment.