Fix accidental change

This commit is contained in:
Michael Bromley 2021-01-25 21:39:39 +01:00
parent ec42680e48
commit 5b7d02495a

View File

@ -27,7 +27,7 @@ const fetchGraphqlApi: GraphQLFetcher = async (
const json = await res.json()
if (json.errors) {
throw new FetcherError({
errors: json.errors ?? [{ message: 'Failed to fetch Vendure API' }],
errors: json.errors ?? [{ message: 'Failed to fetch Bigcommerce API' }],
status: res.status,
})
}