diff --git a/src/utils/baseHttpService.ts b/src/utils/baseHttpService.ts index a10b0f8..fde8701 100644 --- a/src/utils/baseHttpService.ts +++ b/src/utils/baseHttpService.ts @@ -8,11 +8,9 @@ import { postLogout } from "@/pages/auth/core/_requests"; const baseURL = API_GATE_WAY; axios.defaults.baseURL = API_GATE_WAY; axios.defaults.timeout = REQUEST_TIMEOUT; -axios.defaults.withCredentials = true; const api = axios.create({ baseURL, - withCredentials: true, headers: { "Content-Type": "application/json", },