refactor: update auth token name

This commit is contained in:
Derrick Hammer 2024-03-17 08:18:33 -04:00
parent 20533913bd
commit 9fd55bf994
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}