SweetAlert2 onClose option depereciated and no longer works replace with willClose
this._accountService.activateEmail(this.model)
.subscribe(() => {
this.notify.success(this.l('YourEmailIsConfirmedMessage'), '',
{
willClose: () => {
this._router.navigate(['account/login']);
}
});
});