From 9fd55bf994feb25dcf282104015c579f798b04bd Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 17 Mar 2024 08:18:33 -0400 Subject: [PATCH] refactor: update auth token name --- app/data/auth-provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/auth-provider.ts b/app/data/auth-provider.ts index 86cec49..dfa10cc 100644 --- a/app/data/auth-provider.ts +++ b/app/data/auth-provider.ts @@ -147,7 +147,7 @@ export class PortalAuthProvider implements RequiredAuthProvider { maybeSetupAuth(): void { const cookies = new Cookies(); - const jwtCookie = cookies.get('jwt'); + const jwtCookie = cookies.get('auth_token'); if (jwtCookie) { this.sdk.setAuthToken(jwtCookie); }