fix: linter
Deploy banu-front / deploy (push) Successful in 1m28s

This commit is contained in:
sajjadtalkhabi
2026-05-28 15:52:48 +03:30
parent 3f3c66a02d
commit 9660e3fe8f
41 changed files with 1669 additions and 1087 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ const addCamelizeInterceptor = (instance) => {
)
}
const addUnauthorizeInterceptor = (instance) => {
const _addUnauthorizeInterceptor = (instance) => {
instance.interceptors.response.use(
(res) => res,
async (e) => {
@@ -89,7 +89,7 @@ const createInstance = (baseUrl, { headers = {}, ...configs } = {}) => {
addResponseUnwrapInterceptor(instance)
addCamelizeInterceptor(instance)
addSnakizeInterceptor(instance)
// addUnauthorizeInterceptor(instance)
// _addUnauthorizeInterceptor(instance)
return instance
}