diff --git a/src/app/register-page/create-profile/create-profile.component.ts b/src/app/register-page/create-profile/create-profile.component.ts index cebc0de8a3f..51d49c89f9a 100644 --- a/src/app/register-page/create-profile/create-profile.component.ts +++ b/src/app/register-page/create-profile/create-profile.component.ts @@ -17,6 +17,7 @@ import { import { ActivatedRoute, Router, + RouterLink, } from '@angular/router'; import { Store } from '@ngrx/store'; import { @@ -66,6 +67,7 @@ import { NotificationsService } from '../../shared/notifications/notifications.s ReactiveFormsModule, NgForOf, AlertComponent, + RouterLink, ], standalone: true, }) diff --git a/src/app/register-page/register-page-routes.ts b/src/app/register-page/register-page-routes.ts index e7ca386aac8..3811e9f7772 100644 --- a/src/app/register-page/register-page-routes.ts +++ b/src/app/register-page/register-page-routes.ts @@ -1,6 +1,5 @@ import { Route } from '@angular/router'; -import { endUserAgreementCookieGuard } from '../core/end-user-agreement/end-user-agreement-cookie.guard'; import { ThemedCreateProfileComponent } from './create-profile/themed-create-profile.component'; import { ThemedRegisterEmailComponent } from './register-email/themed-register-email.component'; import { registrationGuard } from './registration.guard'; @@ -17,7 +16,6 @@ export const ROUTES: Route[] = [ component: ThemedCreateProfileComponent, canActivate: [ registrationGuard, - endUserAgreementCookieGuard, ], }, ];