Remove websocket and js tabs

Since npm packages don't work with liquidtestnet yet.
This commit is contained in:
hunicus
2022-01-11 17:21:35 -05:00
parent 7825b8d732
commit 871329e0fd
2 changed files with 3 additions and 3 deletions

View File

@@ -22,6 +22,6 @@ export class DocsComponent implements OnInit {
const url = this.route.snapshot.url;
this.activeTab = ( url[2].path === "rest" ) ? 0 : 1;
this.env = this.stateService.env;
this.showWebSocketTab = ( ! ( ( this.env.BASE_MODULE === "bisq" ) || ( this.stateService.network === "bisq" ) ) );
this.showWebSocketTab = ( ! ( ( this.env.BASE_MODULE === "bisq" ) || ( this.stateService.network === "bisq" ) || ( this.stateService.network === "liquidtestnet" ) ) );
}
}