add blockchain bar to stratum page

This commit is contained in:
Mononaut
2024-09-09 23:27:29 +00:00
parent 3ea491ad13
commit cb4bf0611e
2 changed files with 10 additions and 3 deletions

View File

@@ -57,10 +57,16 @@ const routes: Routes = [
path: 'rbf',
component: RbfList,
},
{
...(browserWindowEnv.STRATUM_ENABLED ? [{
path: 'stratum',
component: StratumList,
},
component: StartComponent,
children: [
{
path: '',
component: StratumList,
}
]
}] : []),
{
path: 'terms-of-service',
loadChildren: () => import('@components/terms-of-service/terms-of-service.module').then(m => m.TermsOfServiceModule),