From 622b67047d65ca85995292220b04a5f08891cdc7 Mon Sep 17 00:00:00 2001 From: Alexander Kacheryants Date: Sun, 7 Apr 2024 23:28:01 +0300 Subject: [PATCH] fix pages routing after refactor --- src/app/tabs/tabs-routing.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/tabs/tabs-routing.module.ts b/src/app/tabs/tabs-routing.module.ts index e8e404f..47eb5f4 100644 --- a/src/app/tabs/tabs-routing.module.ts +++ b/src/app/tabs/tabs-routing.module.ts @@ -10,17 +10,17 @@ const routes: Routes = [ { path: 'search', loadChildren: () => - import('../SearchPage/search.module').then((m) => m.SearchPageModule), + import('./SearchPage/search.module').then((m) => m.SearchPageModule), }, { path: 'users', loadChildren: () => - import('../UsersPage/users.module').then((m) => m.Tab2PageModule), + import('./UsersPage/users.module').then((m) => m.Tab2PageModule), }, { path: 'rent', loadChildren: () => - import('../RentPage/rent.module').then((m) => m.RentPageModule), + import('./RentPage/rent.module').then((m) => m.RentPageModule), }, { path: '',