From 085a0ab6db767148588bbf5fdfb95fbf5c5ed882 Mon Sep 17 00:00:00 2001 From: bitbucket Date: Tue, 14 Mar 2023 16:01:13 +0530 Subject: [PATCH] login routing issue fixed --- ng-seed/src/app/app.routing.ts | 5 +---- ng-seed/src/app/appoinment/appoinment.module.ts | 12 ++++++------ .../appoinment/customers/customers-routing.module.ts | 2 +- .../src/app/appoinment/user/user-routing.module.ts | 2 +- 4 files changed, 9 insertions(+), 12 deletions(-) diff --git a/ng-seed/src/app/app.routing.ts b/ng-seed/src/app/app.routing.ts index e8c5a2e..00da66a 100644 --- a/ng-seed/src/app/app.routing.ts +++ b/ng-seed/src/app/app.routing.ts @@ -26,10 +26,7 @@ export const AppRoutes: Routes = [{ }, - { - path: 'appoinment', - loadChildren: () => import('./appoinment/appoinment.module').then(m => m.AppoinmentModule) - }, + { path: 'customers', loadChildren: () => import('./appoinment/customers/customers.module').then(m => m.CustomersModule) diff --git a/ng-seed/src/app/appoinment/appoinment.module.ts b/ng-seed/src/app/appoinment/appoinment.module.ts index 45a774b..ede9e9d 100644 --- a/ng-seed/src/app/appoinment/appoinment.module.ts +++ b/ng-seed/src/app/appoinment/appoinment.module.ts @@ -20,12 +20,12 @@ import { ConsultantsModule } from './consultants/consultants.module'; CommonModule, AppoinmentRoutingModule, - UserModule, - AppoinmentsModule, - CustomersModule, - CalendarsModule, - ServiceListModule, - ConsultantsModule + // UserModule, + // AppoinmentsModule, + // CustomersModule, + // CalendarsModule, + // ServiceListModule, + // ConsultantsModule ], providers:[ diff --git a/ng-seed/src/app/appoinment/customers/customers-routing.module.ts b/ng-seed/src/app/appoinment/customers/customers-routing.module.ts index fdcceaf..61d398e 100644 --- a/ng-seed/src/app/appoinment/customers/customers-routing.module.ts +++ b/ng-seed/src/app/appoinment/customers/customers-routing.module.ts @@ -6,7 +6,7 @@ const routes: Routes = [ { path: '', component: CustomersListComponent - }, + } ]; @NgModule({ diff --git a/ng-seed/src/app/appoinment/user/user-routing.module.ts b/ng-seed/src/app/appoinment/user/user-routing.module.ts index b659b14..16c2dd9 100644 --- a/ng-seed/src/app/appoinment/user/user-routing.module.ts +++ b/ng-seed/src/app/appoinment/user/user-routing.module.ts @@ -7,7 +7,7 @@ const routes: Routes = [ { path: '', component: UserListComponent - }, + } ]; @NgModule({