diy-template-components 2.0.80 → 2.0.81

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
@@ -3684,7 +3684,6 @@ const Section$3 = ({
3684
3684
  sectionIndex,
3685
3685
  extraProps
3686
3686
  }) => {
3687
- console.log('extraProps in banner center', extraProps, nodeData?.cta?.metadata?.default);
3688
3687
  const {
3689
3688
  layout: {
3690
3689
  containerWidth
@@ -3762,7 +3761,8 @@ const Section$3 = ({
3762
3761
  function BannerCarouselCenter({
3763
3762
  sectionData,
3764
3763
  isCustomWebsite,
3765
- sectionIndex
3764
+ sectionIndex,
3765
+ extraProps
3766
3766
  }) {
3767
3767
  const classes = useSectionStyles$6({
3768
3768
  isCustomWebsite
@@ -3781,7 +3781,8 @@ function BannerCarouselCenter({
3781
3781
  nodeData: node,
3782
3782
  isCustomWebsite: isCustomWebsite,
3783
3783
  key: idx /* or some other unique property */,
3784
- sectionIndex: sectionIndex
3784
+ sectionIndex: sectionIndex,
3785
+ extraProps: extraProps
3785
3786
  }))));
3786
3787
  }
3787
3788