Forgot to add this

This commit is contained in:
Ojakoo
2022-07-04 11:14:21 +03:00
parent 9005c3dd93
commit 2ab8185a59
+2 -2
View File
@@ -75,6 +75,6 @@ export async function refreshToken(): Promise<boolean> {
}
export function getAuthHeader(): string {
const jwt = getAccessTokenCookie();
return `Bearer ${jwt}`;
const jwt_access = getAccessTokenCookie();
return `Bearer ${jwt_access}`;
}