diy-template-components 2.0.22 → 2.0.23
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 +2 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -1547,13 +1547,13 @@ function Header({
|
|
|
1547
1547
|
header: data,
|
|
1548
1548
|
isTutorWebsite: isTutorWebsite,
|
|
1549
1549
|
isLandingPage: isLandingPage,
|
|
1550
|
-
onDownloadAppTriggered: extraProps
|
|
1550
|
+
onDownloadAppTriggered: extraProps?.DownloadAppButtonTriggered
|
|
1551
1551
|
}) : /*#__PURE__*/React.createElement(DesktopHeader, {
|
|
1552
1552
|
navData: filterHiddenNavs(),
|
|
1553
1553
|
header: data,
|
|
1554
1554
|
isTutorWebsite: isTutorWebsite,
|
|
1555
1555
|
isLandingPage: isLandingPage,
|
|
1556
|
-
onDownloadAppTriggered: extraProps
|
|
1556
|
+
onDownloadAppTriggered: extraProps?.DownloadAppButtonTriggered
|
|
1557
1557
|
});
|
|
1558
1558
|
}
|
|
1559
1559
|
|