We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 21b3f02 + 7b2d30b commit 61d2269Copy full SHA for 61d2269
.circleci/config.yml
@@ -379,6 +379,7 @@ workflows:
379
branches:
380
only:
381
- develop
382
+ - HOTFIX_Contentful_Not_Working_June222023
383
# Production builds are exectuted
384
# when PR is merged to the master
385
# Don't change anything in this configuration
src/shared/containers/ContentfulLoader.jsx
@@ -383,7 +383,7 @@ class ContentfulLoader extends React.Component {
/* Some of the required data still pending to load: render a placeholder,
* or nothing. */
386
- if (!data || _.isEmpty(Object.values(data.entries.items))) {
+ if (!data) {
387
return _.isFunction(Placeholder) ? <Placeholder /> : Placeholder;
388
}
389
0 commit comments