diff --git a/packages/skin-museum-client/src/utils.js b/packages/skin-museum-client/src/utils.js index dc3e76bf..0b73d741 100644 --- a/packages/skin-museum-client/src/utils.js +++ b/packages/skin-museum-client/src/utils.js @@ -127,10 +127,10 @@ export async function fetchGraphql(query, variables = {}) { if (!response.ok) { const payload = await response.text(); throw new Error( - `GraphQL respose error. + `GraphQL response error. URL: ${url} Status: ${response.status}: -Respones body: +Response body: ${payload}` ); }