feat(back-end & web): improvements
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 1m12s
Build, Test and Deploy / build-and-push (push) Successful in 21s
Build, Test and Deploy / deploy (push) Successful in 7s

This commit is contained in:
2026-02-12 16:02:03 +01:00
parent 9c3d5fae12
commit 89d84ed369

View File

@@ -25,13 +25,13 @@ export const routes: Routes = [
path: 'contact', path: 'contact',
loadChildren: () => import('./features/contact/contact.routes').then(m => m.CONTACT_ROUTES) loadChildren: () => import('./features/contact/contact.routes').then(m => m.CONTACT_ROUTES)
}, },
{
path: '',
loadChildren: () => import('./features/legal/legal.routes').then(m => m.LEGAL_ROUTES)
},
{ {
path: 'payment/:orderId', path: 'payment/:orderId',
loadComponent: () => import('./features/payment/payment.component').then(m => m.PaymentComponent) loadComponent: () => import('./features/payment/payment.component').then(m => m.PaymentComponent)
},
{
path: '',
loadChildren: () => import('./features/legal/legal.routes').then(m => m.LEGAL_ROUTES)
} }
] ]
} }