diy-template-components 0.2.1 → 0.2.2
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 +3 -3
- package/build/index.es.js.map +1 -1
- package/build/index.js +3 -3
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.es.js
CHANGED
|
@@ -7302,8 +7302,8 @@ const SingleVideoSlide = props => {
|
|
|
7302
7302
|
conversions = 20,
|
|
7303
7303
|
showCourseInstallment
|
|
7304
7304
|
} = props;
|
|
7305
|
-
const showCourseInstallmentData = data?.courseOverviewData
|
|
7306
|
-
const InstalmentData = data?.courseOverviewData?.installments?.formData?.installments[0].
|
|
7305
|
+
const showCourseInstallmentData = data?.courseOverviewData;
|
|
7306
|
+
const InstalmentData = data?.courseOverviewData?.installments?.formData?.installmentInfo?.installments[0].installmentPrice;
|
|
7307
7307
|
|
|
7308
7308
|
const checkIfOfferIsValid = () => moment().diff(moment(props?.data?.endDate || 0)) < 0;
|
|
7309
7309
|
|
|
@@ -7472,7 +7472,7 @@ const SingleVideoSlide = props => {
|
|
|
7472
7472
|
className: classes.payInstallmentHeader
|
|
7473
7473
|
}, /*#__PURE__*/React.createElement("h4", null, /*#__PURE__*/React.createElement("span", {
|
|
7474
7474
|
dangerouslySetInnerHTML: {
|
|
7475
|
-
__html: ` Start learning at Rs ${InstalmentData}`
|
|
7475
|
+
__html: ` Start learning at Rs ${InstalmentData / 100}`
|
|
7476
7476
|
}
|
|
7477
7477
|
})), /*#__PURE__*/React.createElement("p", null, "Pay in Instalments")), /*#__PURE__*/React.createElement("img", {
|
|
7478
7478
|
className: classes.arrowRightIcon,
|