diy-template-components 0.2.54 → 0.2.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -1156,7 +1156,7 @@ const NextImageRenderer = ({
1156
1156
  refSetter,
1157
1157
  className
1158
1158
  } = props;
1159
- if (isCustomWebsite && typeof Image !== 'undefined') {
1159
+ if (isCustomWebsite) {
1160
1160
  const classes = nextImageRendererStyles();
1161
1161
  const imageLoader = ({
1162
1162
  src,
@@ -3008,6 +3008,7 @@ function BannerCarouselCenter({
3008
3008
  className: classes.bannerCarouselCenterSection
3009
3009
  }, /*#__PURE__*/React__default["default"].createElement(Wrapper, wrapperProps, bannerCarousel.components.map((node, idx) => /*#__PURE__*/React__default["default"].createElement(Section$3, {
3010
3010
  nodeData: node,
3011
+ isCustomWebsite: isCustomWebsite,
3011
3012
  key: idx /* or some other unique property */,
3012
3013
  sectionIndex: sectionIndex
3013
3014
  }))));