Fix Liquid blocks page

This commit is contained in:
natsoni 2024-07-05 22:51:39 +09:00
parent 20d948c280
commit 2ec0e6634b
No known key found for this signature in database
GPG Key ID: C65917583181743B

View File

@ -35,9 +35,13 @@ const routes: Routes = [
loadChildren: () => import('../components/about/about.module').then(m => m.AboutModule),
},
{
path: 'blocks',
path: 'blocks/:page',
component: BlocksList,
},
{
path: 'blocks',
redirectTo: 'blocks/1',
},
{
path: 'terms-of-service',
loadChildren: () => import('../components/terms-of-service/terms-of-service.module').then(m => m.TermsOfServiceModule),