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, }) }