diff --git a/frontend/src/app/services/electrs-api.service.ts b/frontend/src/app/services/electrs-api.service.ts index 180d5973d..e23fa9e55 100644 --- a/frontend/src/app/services/electrs-api.service.ts +++ b/frontend/src/app/services/electrs-api.service.ts @@ -19,7 +19,7 @@ export class ElectrsApiService { ) { this.apiBaseUrl = API_BASE_URL.replace('{network}', ''); this.stateService.networkChanged$.subscribe((network) => { - if (network === 'bisq' && !env.BISQ_SEPARATE_BACKEND) { + if (network === 'bisq') { network = ''; } this.apiBaseUrl = API_BASE_URL.replace('{network}', network ? '/' + network : '');