File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ const routes: Routes = [
91
91
path : ApplicationRoutes . register ,
92
92
canActivateChild : [ LanguageGuard , RegisterGuard ] ,
93
93
loadChildren : ( ) =>
94
- import ( './register2/register.module' ) . then ( ( m ) => m . Register2Module ) ,
94
+ import ( './register2/register.module' ) . then ( ( m ) => m . RegisterModule ) ,
95
95
} ,
96
96
{
97
97
path : ApplicationRoutes . search ,
@@ -151,7 +151,7 @@ const routes: Routes = [
151
151
matcher : routerReactivation ,
152
152
canActivateChild : [ LanguageGuard , RegisterGuard ] ,
153
153
loadChildren : ( ) =>
154
- import ( './register2/register.module' ) . then ( ( m ) => m . Register2Module ) ,
154
+ import ( './register2/register.module' ) . then ( ( m ) => m . RegisterModule ) ,
155
155
} ,
156
156
{
157
157
path : ApplicationRoutes . selfService ,
Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core'
2
2
import { RouterModule , Routes } from '@angular/router'
3
- import { Register2Component } from './pages/register/register2 .component'
3
+ import { RegisterComponent } from './pages/register/register .component'
4
4
5
5
const routes : Routes = [
6
6
{
7
7
path : '' ,
8
- component : Register2Component ,
8
+ component : RegisterComponent ,
9
9
} ,
10
10
]
11
11
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { WarningMessageModule } from '../cdk/warning-message/warning-message.mod
30
30
import { BackendErrorComponent } from './components/backend-error/backend-error.component'
31
31
import { FormAntiRobotsComponent } from './components/form-anti-robots/form-anti-robots.component'
32
32
import { FormPersonalAdditionalEmailsComponent } from './components/form-personal-additional-emails/form-personal-additional-emails.component'
33
- import { Register2Component } from './pages/register/register2 .component'
33
+ import { RegisterComponent } from './pages/register/register .component'
34
34
import { StepCComponent } from './components/step-c/step-c.component'
35
35
import { FormCurrentEmploymentComponent } from './components/form-current-employment/form-current-employment.component'
36
36
import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/material/legacy-autocomplete'
@@ -54,7 +54,7 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
54
54
FormPersonalAdditionalEmailsComponent ,
55
55
FormAntiRobotsComponent ,
56
56
BackendErrorComponent ,
57
- Register2Component ,
57
+ RegisterComponent ,
58
58
FormCurrentEmploymentComponent ,
59
59
] ,
60
60
imports : [
@@ -84,4 +84,4 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
84
84
SharedModule ,
85
85
] ,
86
86
} )
87
- export class Register2Module { }
87
+ export class RegisterModule { }
You can’t perform that action at this time.
0 commit comments