From e372bf242b24f55c1142e33693ad2c801ab74c93 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Fri, 28 Jan 2022 08:18:39 -0500 Subject: [PATCH] [cleanup] Adjust type to match abstraction (#643) --- common/src/services/environment.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/services/environment.service.ts b/common/src/services/environment.service.ts index a4f0a213e7..28caaf47c9 100644 --- a/common/src/services/environment.service.ts +++ b/common/src/services/environment.service.ts @@ -126,7 +126,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction { this.keyConnectorUrl = urls.keyConnector; } - async setUrls(urls: Urls): Promise { + async setUrls(urls: Urls): Promise { urls.base = this.formatUrl(urls.base); urls.webVault = this.formatUrl(urls.webVault); urls.api = this.formatUrl(urls.api);