From c3adf96da789815d34c5c155cefcabc158ff1eed Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Fri, 14 Jul 2023 14:19:57 -0500 Subject: [PATCH] fix: remove extra v2 within us/euUrls, refs AC-1518 (#5825) --- libs/common/src/platform/services/environment.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/common/src/platform/services/environment.service.ts b/libs/common/src/platform/services/environment.service.ts index d8e3a761d9..770de20f83 100644 --- a/libs/common/src/platform/services/environment.service.ts +++ b/libs/common/src/platform/services/environment.service.ts @@ -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) {