Skip to content

Commit

Permalink
Merge pull request #7058 from topcoder-platform/develop
Browse files Browse the repository at this point in the history
Merge develop to revert-reverted
  • Loading branch information
kkartunov authored Jan 30, 2025
2 parents eb450d2 + 7cd265b commit f0e37af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,6 @@ workflows:
branches:
only:
- develop
- TOP-1390
- PM-191-2
- pm-199
# This is alternate dev env for parallel testing
# Deprecate this workflow due to beta env shutdown
# https://topcoder.atlassian.net/browse/CORE-251
Expand Down
4 changes: 3 additions & 1 deletion src/shared/services/contentful.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f0e37af

Please sign in to comment.