From cd3fad95a57464787ed480a898b6db8a9e2675bf Mon Sep 17 00:00:00 2001 From: Blitblank Date: Sun, 22 Mar 2026 20:40:53 -0500 Subject: [PATCH] fix: browser javascript untyped --- client/src/api/axios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/api/axios.ts b/client/src/api/axios.ts index 016a895..8d05317 100644 --- a/client/src/api/axios.ts +++ b/client/src/api/axios.ts @@ -39,7 +39,7 @@ const processQueue = (error: unknown, token: string | null = null): void => { // intercept on each request api.interceptors.request.use(config => { // add access token to request headers - const token = localStorage.getAccessToken(); + const token = authStorage.getAccessToken(); if (token) { config.headers.Authorization = `Bearer ${token}`;