fix: do not hard redirect after login

This commit is contained in:
Jacob Overgaard
2024-05-15 09:52:43 +02:00
parent f61a470a77
commit e8729f32eb

View File

@@ -86,7 +86,7 @@ export class UmbAppElement extends UmbLitElement {
: this.localize.term('errors_externalLoginFailed');
this.observe(this.#authContext.authorizationSignal, () => {
window.location.href = '/';
history.replaceState(null, '', '');
});
}