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.es.js
CHANGED
|
@@ -5958,7 +5958,7 @@ function CourseCard({
|
|
|
5958
5958
|
const defaultCardImg = 'https://cp-assets-public.s3.ap-south-1.amazonaws.com/cams/cards-icon/default_course.png';
|
|
5959
5959
|
const price = formatCurrency(countryCode, card?.price, currencySymbol);
|
|
5960
5960
|
const finalPrice = formatCurrency(countryCode, card?.finalPrice, currencySymbol);
|
|
5961
|
-
const buyNowText = countryCode === 'KR' ? '
|
|
5961
|
+
const buyNowText = countryCode === 'KR' ? '수강신청하기' : 'Buy Now';
|
|
5962
5962
|
const offText = countryCode === 'KR' ? '할인' : 'OFF';
|
|
5963
5963
|
return /*#__PURE__*/React.createElement("div", {
|
|
5964
5964
|
className: classes.singleCard
|
|
@@ -8085,7 +8085,7 @@ const SingleVideoSlide = props => {
|
|
|
8085
8085
|
};
|
|
8086
8086
|
const effectivePrice = formatCurrency(countryCode, data?.effectivePrice, currencySymbol);
|
|
8087
8087
|
const finalPrice = formatCurrency(countryCode, data?.price, currencySymbol);
|
|
8088
|
-
const buyNowText = countryCode === 'KR' ? '
|
|
8088
|
+
const buyNowText = countryCode === 'KR' ? '수강신청하기' : 'BUY NOW';
|
|
8089
8089
|
const handleReadMoreText = () => {
|
|
8090
8090
|
if (countryCode === 'KR') {
|
|
8091
8091
|
return '더 보기';
|