hotpicks change data pantncNm , patnrId

This commit is contained in:
dongyoungKo
2025-07-10 10:46:18 +09:00
parent 4eae54212b
commit 86fb9eab5c

View File

@@ -63,13 +63,15 @@ export default function ShowOption({
const themeInfo = productData?.themeInfo[0]; const themeInfo = productData?.themeInfo[0];
if (themeInfo) { if (themeInfo) {
const { curationId, curationNm } = themeInfo; const { curationId, curationNm , patncNm, patnrId} = themeInfo;
return { return {
...productInfo[selectedIndex], ...productInfo[selectedIndex],
curationId, curationId,
curationNm, curationNm,
expsOrd: `${selectedIndex + 1}`, expsOrd: `${selectedIndex + 1}`,
patncNm,
patnrId,
}; };
} }
} }