Skip to content

Commit aa489d1

Browse files
authored
Merge pull request #7056 from topcoder-platform/pm-606
fix(PM-606) Thrive search page not loading
2 parents 465a1f0 + 1dbcb15 commit aa489d1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ workflows:
360360
- develop
361361
- TOP-1390
362362
- PM-191-2
363-
- pm-199
363+
- pm-606
364364
# This is alternate dev env for parallel testing
365365
# Deprecate this workflow due to beta env shutdown
366366
# https://topcoder.atlassian.net/browse/CORE-251

src/shared/services/contentful.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,9 @@ class Service {
246246
url += this.private.preview ? '/preview' : '/published';
247247
url += '/entries';
248248
if (query) url += `?${qs.stringify(query)}`;
249-
const res = await fetch(url);
249+
const res = await fetch(url, {
250+
credentials: 'omit',
251+
});
250252
if (!res.ok) {
251253
const error = new Error('Failed to get entries.');
252254
logger.error(error);

0 commit comments

Comments
 (0)