We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eb450d2 + 7cd265b commit f0e37afCopy full SHA for f0e37af
.circleci/config.yml
@@ -358,9 +358,6 @@ workflows:
358
branches:
359
only:
360
- develop
361
- - TOP-1390
362
- - PM-191-2
363
- - pm-199
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