1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

[cleanup] Adjust type to match abstraction (#643)

This commit is contained in:
Addison Beck 2022-01-28 08:18:39 -05:00 committed by GitHub
parent 6c61f53d8b
commit e372bf242b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
this.keyConnectorUrl = urls.keyConnector;
}
async setUrls(urls: Urls): Promise<any> {
async setUrls(urls: Urls): Promise<Urls> {
urls.base = this.formatUrl(urls.base);
urls.webVault = this.formatUrl(urls.webVault);
urls.api = this.formatUrl(urls.api);