From 5b7d02495a93b2d89cbc6a2fb3f3f73ab5e284bc Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Mon, 25 Jan 2021 21:39:39 +0100 Subject: [PATCH] Fix accidental change --- framework/bigcommerce/api/utils/fetch-graphql-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/bigcommerce/api/utils/fetch-graphql-api.ts b/framework/bigcommerce/api/utils/fetch-graphql-api.ts index 81eb2841e..a449b81e0 100644 --- a/framework/bigcommerce/api/utils/fetch-graphql-api.ts +++ b/framework/bigcommerce/api/utils/fetch-graphql-api.ts @@ -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, }) }