From f5065235b7d2c8728bd8c79386321aef4d557fdd Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Wed, 5 Feb 2025 17:55:24 -0800 Subject: [PATCH] Spelling --- packages/skin-museum-client/src/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}` ); }