fix calculation errors
This commit is contained in:
parent
2eed0b91a1
commit
648d7081ab
@ -91,8 +91,9 @@ export default async () => {
|
||||
description:
|
||||
err.response &&
|
||||
err.response.data &&
|
||||
((err.response.data.errors && err.response.data.errors.join(', ')) ||
|
||||
err.response.data),
|
||||
(err.response.data.errors
|
||||
? err.response.data.errors.join(', ')
|
||||
: err.response.data),
|
||||
})();
|
||||
|
||||
throw err;
|
||||
|
||||
Reference in New Issue
Block a user