1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 03:33:54 +00:00

[bug] Always save environmentUrls passed to setUrls (#641)

* [bug] Always save environmentUrls passed to setUrls

* [bug] Remove parameter from abstraction as well

* [bug] Correct type in abstraction
This commit is contained in:
Addison Beck
2022-01-28 08:15:02 -05:00
committed by GitHub
parent ca5b057b43
commit 6c61f53d8b
2 changed files with 12 additions and 14 deletions

View File

@@ -29,6 +29,6 @@ export abstract class EnvironmentService {
getEventsUrl: () => string;
getKeyConnectorUrl: () => string;
setUrlsFromStorage: () => Promise<void>;
setUrls: (urls: any, saveSettings?: boolean) => Promise<Urls>;
setUrls: (urls: Urls) => Promise<Urls>;
getUrls: () => Urls;
}