Dev 1.3.1 #114

Merged
LukeGus merged 38 commits from dev-1.3.1 into main 2025-08-28 06:00:48 +00:00
Showing only changes of commit f2fb938e5f - Show all commits

View File

@@ -175,7 +175,6 @@ function createApiInstance(baseURL: string): AxiosInstance {
timeout: 30000,
});
// Add JWT token to all requests
instance.interceptors.request.use((config) => {
const token = getCookie('jwt');
if (token) {
@@ -184,7 +183,6 @@ function createApiInstance(baseURL: string): AxiosInstance {
return config;
});
// Global error handling
instance.interceptors.response.use(
(response) => response,
(error: AxiosError) => {