unlink merge fixes
This commit is contained in:
parent
9e1cf8f642
commit
27d899dec2
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue