last update

This commit is contained in:
Ehsan
2025-05-23 18:06:48 +03:30
parent 378a42436b
commit 660117f6e8
4 changed files with 14 additions and 7 deletions
+4
View File
@@ -15,9 +15,13 @@ const api = axios.create({
api.interceptors.response.use(
(response) => {
console.log(response);
return response.data;
},
(error) => {
console.log(error);
return error;
}
);