diy-template-components 1.0.34 → 1.0.35
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
|
@@ -5974,7 +5974,7 @@ function CourseCard({
|
|
|
5974
5974
|
const defaultCardImg = 'https://cp-assets-public.s3.ap-south-1.amazonaws.com/cams/cards-icon/default_course.png';
|
|
5975
5975
|
const price = formatCurrency(countryCode, card?.price, currencySymbol);
|
|
5976
5976
|
const finalPrice = formatCurrency(countryCode, card?.finalPrice, currencySymbol);
|
|
5977
|
-
const buyNowText = countryCode === 'KR' ? '
|
|
5977
|
+
const buyNowText = countryCode === 'KR' ? '수강신청하기' : 'Buy Now';
|
|
5978
5978
|
const offText = countryCode === 'KR' ? '할인' : 'OFF';
|
|
5979
5979
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
5980
5980
|
className: classes.singleCard
|
|
@@ -8101,7 +8101,7 @@ const SingleVideoSlide = props => {
|
|
|
8101
8101
|
};
|
|
8102
8102
|
const effectivePrice = formatCurrency(countryCode, data?.effectivePrice, currencySymbol);
|
|
8103
8103
|
const finalPrice = formatCurrency(countryCode, data?.price, currencySymbol);
|
|
8104
|
-
const buyNowText = countryCode === 'KR' ? '
|
|
8104
|
+
const buyNowText = countryCode === 'KR' ? '수강신청하기' : 'BUY NOW';
|
|
8105
8105
|
const handleReadMoreText = () => {
|
|
8106
8106
|
if (countryCode === 'KR') {
|
|
8107
8107
|
return '더 보기';
|