diff --git a/.circleci/config.yml b/.circleci/config.yml index b813779aa..597099624 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,7 +360,7 @@ workflows: - develop - TOP-1390 - PM-191-2 - - pm-199 + - pm-606 # This is alternate dev env for parallel testing # Deprecate this workflow due to beta env shutdown # https://topcoder.atlassian.net/browse/CORE-251 diff --git a/src/shared/services/contentful.js b/src/shared/services/contentful.js index e4dda0196..2f1531253 100644 --- a/src/shared/services/contentful.js +++ b/src/shared/services/contentful.js @@ -246,7 +246,9 @@ class Service { url += this.private.preview ? '/preview' : '/published'; url += '/entries'; if (query) url += `?${qs.stringify(query)}`; - const res = await fetch(url); + const res = await fetch(url, { + credentials: 'omit', + }); if (!res.ok) { const error = new Error('Failed to get entries.'); logger.error(error);