This commit is contained in:
Jordan Eldredge 2025-02-05 17:55:24 -08:00
parent f656aba7d9
commit f5065235b7

View file

@ -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}`
);
}