unlink merge fixes

This commit is contained in:
Efstratios Giannopoulos 2024-05-23 15:10:02 +03:00
parent 9e1cf8f642
commit 27d899dec2
2 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,10 @@ export class MergeEmailConfirmation extends BaseComponent implements OnInit {
}
onCallbackEmailConfirmationSuccess() {
this.router.navigate(['home']);
this.router.navigate(['home'])
.then(() => {
window.location.reload();
});
}
onCallbackError(error: any) {

View File

@ -51,10 +51,7 @@ export class UnlinkEmailConfirmation extends BaseComponent implements OnInit {
}
onCallbackConfirmationSuccess() {
this.router.navigate(['home'])
.then(() => {
window.location.reload();
});
this.router.navigate(['home']);
}
onCallbackError(error: any) {