diy-template-components 0.0.53 → 0.0.56
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
|
@@ -5172,7 +5172,7 @@ function CourseCard({
|
|
|
5172
5172
|
className: classes.courseCardStrikePrice
|
|
5173
5173
|
}, /*#__PURE__*/React__default["default"].createElement("span", null, '₹', card?.price), ' ', discount > 0 && discount + '% OFF')), /*#__PURE__*/React__default["default"].createElement("a", {
|
|
5174
5174
|
className: classes.coursesAnchorTag,
|
|
5175
|
-
href: isEdit ? card?.shareableLink
|
|
5175
|
+
href: isEdit ? null : card?.shareableLink
|
|
5176
5176
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
5177
5177
|
className: classes.courseCardBuyBtn
|
|
5178
5178
|
}, "Buy Now")))));
|
|
@@ -5957,7 +5957,7 @@ const useSectionStyles = createUseStyles(theme => ({
|
|
|
5957
5957
|
backgroundColor: theme?.palette?.background?.default,
|
|
5958
5958
|
boxShadow: theme?.shadows?.secondary,
|
|
5959
5959
|
borderRadius: theme?.shape?.borderRadius?.regular,
|
|
5960
|
-
margin: '60px
|
|
5960
|
+
margin: '60px',
|
|
5961
5961
|
padding: '40px 80px',
|
|
5962
5962
|
position: 'relative'
|
|
5963
5963
|
},
|