Disable Featured assets on Liquid testnet

fixes #1229
This commit is contained in:
softsimon
2022-02-07 14:24:18 +04:00
parent 1649cfbde0
commit f260203833

View File

@@ -459,10 +459,6 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
path: 'assets', path: 'assets',
component: AssetsNavComponent, component: AssetsNavComponent,
children: [ children: [
{
path: 'featured',
component: AssetsFeaturedComponent,
},
{ {
path: 'all', path: 'all',
component: AssetsComponent, component: AssetsComponent,
@@ -477,7 +473,7 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
}, },
{ {
path: '**', path: '**',
redirectTo: 'featured' redirectTo: 'all'
} }
] ]
}, },