diff options
Diffstat (limited to 'client/src/app/my-account/my-account.module.ts')
-rw-r--r-- | client/src/app/my-account/my-account.module.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/my-account/my-account.module.ts b/client/src/app/my-account/my-account.module.ts index 317277304..981d3c697 100644 --- a/client/src/app/my-account/my-account.module.ts +++ b/client/src/app/my-account/my-account.module.ts | |||
@@ -2,10 +2,11 @@ import { NgModule } from '@angular/core' | |||
2 | import { SharedModule } from '../shared' | 2 | import { SharedModule } from '../shared' |
3 | import { MyAccountRoutingModule } from './my-account-routing.module' | 3 | import { MyAccountRoutingModule } from './my-account-routing.module' |
4 | import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component' | 4 | import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component' |
5 | import { MyAccountDetailsComponent } from './my-account-settings/my-account-details/my-account-details.component' | 5 | import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component' |
6 | import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' | 6 | import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' |
7 | import { MyAccountComponent } from './my-account.component' | 7 | import { MyAccountComponent } from './my-account.component' |
8 | import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' | 8 | import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' |
9 | import { MyAccountProfileComponent } from '@app/my-account/my-account-settings/my-account-profile/my-account-profile.component' | ||
9 | 10 | ||
10 | @NgModule({ | 11 | @NgModule({ |
11 | imports: [ | 12 | imports: [ |
@@ -17,7 +18,8 @@ import { MyAccountVideosComponent } from './my-account-videos/my-account-videos. | |||
17 | MyAccountComponent, | 18 | MyAccountComponent, |
18 | MyAccountSettingsComponent, | 19 | MyAccountSettingsComponent, |
19 | MyAccountChangePasswordComponent, | 20 | MyAccountChangePasswordComponent, |
20 | MyAccountDetailsComponent, | 21 | MyAccountVideoSettingsComponent, |
22 | MyAccountProfileComponent, | ||
21 | MyAccountVideosComponent | 23 | MyAccountVideosComponent |
22 | ], | 24 | ], |
23 | 25 | ||