Olá, tenho o código:
try {
const { errors } = er.response.data;
const er = errors.map(function(item) {
return item;
});
console.log(er);
toast.error('Error', {
onClose: () => {
setLoading(false);
},
});
} catch (error) {
toast.error('Error', {
onClose: () => {
setLoading(false);
},
});
}
E este é o meu array de erros que retorna da API:
{
"email": [
"The email has already been taken."
],
"url": [
"The url is empty."
]
}
Porém não funciona. O console.log(er); não me retorna os erros. Sabem me dizer o por quê?