diy-template-components 2.0.57 → 2.0.59
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.es.js +8 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +8 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -10129,8 +10129,15 @@ const TimerAndCall = ({
|
|
|
10129
10129
|
sectionData,
|
|
10130
10130
|
extraProps = {}
|
|
10131
10131
|
}) => {
|
|
10132
|
-
|
|
10132
|
+
const {
|
|
10133
|
+
_id,
|
|
10134
|
+
baseURLs,
|
|
10135
|
+
isMobile,
|
|
10136
|
+
countryCode,
|
|
10137
|
+
pageData
|
|
10138
|
+
} = useContext(PageContext);
|
|
10133
10139
|
const [nodeData] = sectionData?.components;
|
|
10140
|
+
console.log('sid sectionData', sectionData, extraProps, pageData, PageContext);
|
|
10134
10141
|
const classes = useTimerCallPageStyles({
|
|
10135
10142
|
isMobile
|
|
10136
10143
|
});
|