From 017ca53600a5773628ff8bbcdd01ddb029083881 Mon Sep 17 00:00:00 2001 From: algafur Date: Mon, 23 Sep 2024 17:04:08 +0500 Subject: [PATCH] fix: bugs --- src/shared/api/api-query/api-query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/api/api-query/api-query.ts b/src/shared/api/api-query/api-query.ts index afa25ad..a5d0298 100644 --- a/src/shared/api/api-query/api-query.ts +++ b/src/shared/api/api-query/api-query.ts @@ -7,7 +7,7 @@ const createAxiosInstance = async () => { const axiosInstance = axios.create({ baseURL: import.meta.env.VITE_API_ADDRESS, }) - + console.log(import.meta.env.VITE_API_ADDRESS) if (token) { axiosInstance.defaults.headers.common['Authorization'] = `Bearer ${token}` }