popularshow 에서 prdt 정보와 show 정보가 같은 정보를 보내주고 있어서 수정

This commit is contained in:
opacity@t-win.kr
2025-11-17 14:19:25 +09:00
parent 08c8177ab6
commit 71e1d2a897
2 changed files with 4 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ export default memo(function TItemCard({
productId: productId,
productTitle: productName,
showId: showId,
showTitle: shelfTitle.includes("LIVE") ? contentTitle : showTitle,
showTitle: showTitle,
nowProductId: nowProductId,
nowCategory: nowCategory,
nowProductTitle: nowProductTitle,

View File

@@ -209,6 +209,7 @@ const PopularShow = ({
patncNm,
catCd,
showUrl,
productInfos,
},
itemIndex
) => {
@@ -231,7 +232,7 @@ const PopularShow = ({
: thumbnailUrl
}
imageAlt={showNm}
productName={showNm}
productName={productInfos[0].prdtNm}
nonPosition={true}
type={TYPES.videoShow}
imgType={
@@ -240,7 +241,7 @@ const PopularShow = ({
: IMAGETYPES.imgVertical
}
logo={patncLogoPath}
productId={showId}
productId={productInfos[0].prdtId}
onFocus={handleFocus(itemIndex)}
onBlur={handleBlur(itemIndex)}
onClick={handleCardClick(patnrId, showId, catCd, showUrl)}