Fix JSON content missing from handled API errors

This commit is contained in:
Andrew Kingston 2022-01-25 08:25:16 +00:00
parent c1595f7884
commit fee24a83ad
1 changed files with 1 additions and 1 deletions

View File

@ -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) {