login routing issue fixed

This commit is contained in:
bitbucket 2023-03-14 16:01:13 +05:30
parent dcd14c9f7a
commit 085a0ab6db
4 changed files with 9 additions and 12 deletions

View File

@ -26,10 +26,7 @@ export const AppRoutes: Routes = [{
}, },
{
path: 'appoinment',
loadChildren: () => import('./appoinment/appoinment.module').then(m => m.AppoinmentModule)
},
{ {
path: 'customers', path: 'customers',
loadChildren: () => import('./appoinment/customers/customers.module').then(m => m.CustomersModule) loadChildren: () => import('./appoinment/customers/customers.module').then(m => m.CustomersModule)

View File

@ -20,12 +20,12 @@ import { ConsultantsModule } from './consultants/consultants.module';
CommonModule, CommonModule,
AppoinmentRoutingModule, AppoinmentRoutingModule,
UserModule, // UserModule,
AppoinmentsModule, // AppoinmentsModule,
CustomersModule, // CustomersModule,
CalendarsModule, // CalendarsModule,
ServiceListModule, // ServiceListModule,
ConsultantsModule // ConsultantsModule
], ],
providers:[ providers:[

View File

@ -6,7 +6,7 @@ const routes: Routes = [
{ {
path: '', path: '',
component: CustomersListComponent component: CustomersListComponent
}, }
]; ];
@NgModule({ @NgModule({

View File

@ -7,7 +7,7 @@ const routes: Routes = [
{ {
path: '', path: '',
component: UserListComponent component: UserListComponent
}, }
]; ];
@NgModule({ @NgModule({