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.js
CHANGED
|
@@ -10145,8 +10145,15 @@ const TimerAndCall = ({
|
|
|
10145
10145
|
sectionData,
|
|
10146
10146
|
extraProps = {}
|
|
10147
10147
|
}) => {
|
|
10148
|
-
|
|
10148
|
+
const {
|
|
10149
|
+
_id,
|
|
10150
|
+
baseURLs,
|
|
10151
|
+
isMobile,
|
|
10152
|
+
countryCode,
|
|
10153
|
+
pageData
|
|
10154
|
+
} = React.useContext(PageContext);
|
|
10149
10155
|
const [nodeData] = sectionData?.components;
|
|
10156
|
+
console.log('sid sectionData', sectionData, extraProps, pageData, PageContext);
|
|
10150
10157
|
const classes = useTimerCallPageStyles({
|
|
10151
10158
|
isMobile
|
|
10152
10159
|
});
|