when I catch an axios error, how can i get the request body? (what I've sent to the server, not the server response)
example of what i want to achieve
axios.post("url",{
name:jesus
}).then((response) => {
....
}).catch((error) => {
console.log(error.request.body) //name:jesus
})