diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index dc8886c31..7a7c057cc 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -219,6 +219,14 @@ const routes: Routes = [ path: 'status-view', component: StatusViewComponent }, + { + path: 'liquid-status-view', + component: StatusViewComponent + }, + { + path: 'testnet-status-view', + component: StatusViewComponent + }, { path: '**', redirectTo: '' diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 438683f6e..1f7c60115 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -54,6 +54,7 @@ export class StateService { switch (url.split('/')[1]) { case 'liquid': case 'liquid-tv': + case 'liquid-status-view': if (this.network !== 'liquid') { this.network = 'liquid'; this.networkChanged$.next('liquid'); @@ -61,6 +62,7 @@ export class StateService { return; case 'testnet': case 'testnet-tv': + case 'testnet-status-view': if (this.network !== 'testnet') { this.network = 'testnet'; this.networkChanged$.next('testnet');