diff --git a/common/src/services/environment.service.ts b/common/src/services/environment.service.ts index cf59d38959..f1842fe980 100644 --- a/common/src/services/environment.service.ts +++ b/common/src/services/environment.service.ts @@ -116,11 +116,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction { const urls: any = await this.stateService.getEnvironmentUrls(); const envUrls = new EnvironmentUrls(); - if (urls.base) { - this.baseUrl = envUrls.base = urls.base; - return; - } - + this.baseUrl = envUrls.base = urls.base; this.webVaultUrl = urls.webVault; this.apiUrl = envUrls.api = urls.api; this.identityUrl = envUrls.identity = urls.identity;