From b1e877b2e5af0227cc120e36fd36f2404866efc5 Mon Sep 17 00:00:00 2001 From: Arno V Date: Mon, 15 Jul 2024 12:38:15 -0400 Subject: [PATCH] feat!: need to scope API calls for auth (#107) --- packages/auth-provider/src/common/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/auth-provider/src/common/constants.ts b/packages/auth-provider/src/common/constants.ts index fb31329..d3d74d7 100644 --- a/packages/auth-provider/src/common/constants.ts +++ b/packages/auth-provider/src/common/constants.ts @@ -10,7 +10,7 @@ export const AUTH_CONTEXT_ERROR = export const API_ENDPOINT = { dev: "https://auth.gizmette.local.com:3003", - prod: "https://mylogin.gizmette.com", + prod: "https://mylogin.gizmette.com/auth", }; export const LOCAL_STORAGE_PREFIX = "@@auth@@";