From bf2a412dec697775080e4286ecf617a739d859a1 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Tue, 25 Oct 2022 08:31:08 +0200 Subject: [PATCH] Improved user confirmation #70 --- .../auth/components/registration/registration.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdb-web/src/app/modules/auth/components/registration/registration.component.ts b/kdb-web/src/app/modules/auth/components/registration/registration.component.ts index 09becb4454..328750c3e7 100644 --- a/kdb-web/src/app/modules/auth/components/registration/registration.component.ts +++ b/kdb-web/src/app/modules/auth/components/registration/registration.component.ts @@ -59,6 +59,7 @@ export class RegistrationComponent implements OnInit { } ngOnInit(): void { + this.confirmEMail(); this.initData(); this.spinnerService.showSpinner(); this.route.queryParams.pipe(catchError(err => { @@ -108,7 +109,6 @@ export class RegistrationComponent implements OnInit { initData() { this.initLoginForm(); this.resetStateFlags(); - this.confirmEMail(); this.spinnerService.hideSpinner(); }