We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 465a1f0 + 1dbcb15 commit aa489d1Copy full SHA for aa489d1
.circleci/config.yml
@@ -360,7 +360,7 @@ workflows:
360
- develop
361
- TOP-1390
362
- PM-191-2
363
- - pm-199
+ - pm-606
364
# This is alternate dev env for parallel testing
365
# Deprecate this workflow due to beta env shutdown
366
# https://topcoder.atlassian.net/browse/CORE-251
src/shared/services/contentful.js
@@ -246,7 +246,9 @@ class Service {
246
url += this.private.preview ? '/preview' : '/published';
247
url += '/entries';
248
if (query) url += `?${qs.stringify(query)}`;
249
- const res = await fetch(url);
+ const res = await fetch(url, {
250
+ credentials: 'omit',
251
+ });
252
if (!res.ok) {
253
const error = new Error('Failed to get entries.');
254
logger.error(error);
0 commit comments