Compare commits

..

No commits in common. "v1.61.1" and "v1.61.0" have entirely different histories.

View file

@ -16,13 +16,13 @@ export class VerifyEmailComponent implements OnInit {
const token = this.route.snapshot.queryParamMap.get('token');
if (!token) {
this.router.navigate(['/']);
this.router.navigate(['']);
console.log('no token');
return;
}
this.authService.verifyEmail(token).subscribe(() => {
this.router.navigate(['/'], {
this.router.navigate([''], {
queryParams: { login: true },
});
});