1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

fix: remove extra v2 within us/euUrls, refs AC-1518 (#5825)

This commit is contained in:
Vincent Salucci
2023-07-14 14:19:57 -05:00
committed by GitHub
parent b2374acc7f
commit c3adf96da7

View File

@@ -33,7 +33,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
webVault: "https://vault.bitwarden.com",
notifications: "https://notifications.bitwarden.com",
events: "https://events.bitwarden.com",
scim: "https://scim.bitwarden.com/v2",
scim: "https://scim.bitwarden.com",
};
readonly euUrls: Urls = {
@@ -44,7 +44,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
webVault: "https://vault.bitwarden.eu",
notifications: "https://notifications.bitwarden.eu",
events: "https://events.bitwarden.eu",
scim: "https://scim.bitwarden.eu/v2",
scim: "https://scim.bitwarden.eu",
};
constructor(private stateService: StateService) {