Fix JSON content missing from handled API errors
This commit is contained in:
parent
c1595f7884
commit
fee24a83ad
|
@ -45,7 +45,7 @@ export const createAPIClient = config => {
|
||||||
let message = response.statusText
|
let message = response.statusText
|
||||||
let json = null
|
let json = null
|
||||||
try {
|
try {
|
||||||
const json = await response.json()
|
json = await response.json()
|
||||||
if (json?.message) {
|
if (json?.message) {
|
||||||
message = json.message
|
message = json.message
|
||||||
} else if (json?.error) {
|
} else if (json?.error) {
|
||||||
|
|
Loading…
Reference in New Issue