From 6f22f05eee0919aaeb83ac63e7015fde2e04615f Mon Sep 17 00:00:00 2001 From: Ike <137194738+ike-kottlowski@users.noreply.github.com> Date: Mon, 8 Jan 2024 11:24:45 -0800 Subject: [PATCH] Update sso prevalidate path (#7479) * Update sso prevalidate path * fixed formatting --- libs/common/src/services/api.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/services/api.service.ts b/libs/common/src/services/api.service.ts index c969bc7e84..5515579851 100644 --- a/libs/common/src/services/api.service.ts +++ b/libs/common/src/services/api.service.ts @@ -1619,7 +1619,7 @@ export class ApiService implements ApiServiceAbstraction { headers.set("User-Agent", this.customUserAgent); } - const path = `/account/prevalidate?domainHint=${encodeURIComponent(identifier)}`; + const path = `/sso/prevalidate?domainHint=${encodeURIComponent(identifier)}`; const response = await this.fetch( new Request(this.environmentService.getIdentityUrl() + path, { cache: "no-store",