diy-template-components 2.0.20 → 2.0.21
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.js
CHANGED
|
@@ -1563,13 +1563,13 @@ function Header({
|
|
|
1563
1563
|
header: data,
|
|
1564
1564
|
isTutorWebsite: isTutorWebsite,
|
|
1565
1565
|
isLandingPage: isLandingPage,
|
|
1566
|
-
onDownloadAppTriggered: extraProps
|
|
1566
|
+
onDownloadAppTriggered: extraProps?.DownloadAppButtonTriggered
|
|
1567
1567
|
}) : /*#__PURE__*/React__default["default"].createElement(DesktopHeader, {
|
|
1568
1568
|
navData: filterHiddenNavs(),
|
|
1569
1569
|
header: data,
|
|
1570
1570
|
isTutorWebsite: isTutorWebsite,
|
|
1571
1571
|
isLandingPage: isLandingPage,
|
|
1572
|
-
onDownloadAppTriggered: extraProps
|
|
1572
|
+
onDownloadAppTriggered: extraProps?.DownloadAppButtonTriggered
|
|
1573
1573
|
});
|
|
1574
1574
|
}
|
|
1575
1575
|
|