axios.interceptors.response.use(function (response) {
// Handle the response before it is passed to the .then() callback
return response;
}, function (error) {
// Handle any errors that occur during the request
return Promise.reject(error);
});