[DetailPanel] MobileSendPopUp error

This commit is contained in:
고동영
2024-06-03 13:42:24 +09:00
parent b228b416f7
commit a249b6a4a6

View File

@@ -362,10 +362,13 @@ export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) {
smsTpCd={type === "hotel" ? "APP00205" : "APP00201"}
curationId={curationId}
curationNm={curationNm}
hotelId={hotelInfos[selectedIndex]?.hotelId}
hotelNm={hotelInfos[selectedIndex]?.hotelNm}
hotelDtlUrl={hotelInfos[selectedIndex]?.hotelDetailInfo?.hotelDtlUrl}
productPrice={Price()}
hotelId={type === "hotel" && hotelInfos[selectedIndex]?.hotelId}
hotelNm={type === "hotel" && hotelInfos[selectedIndex]?.hotelNm}
hotelDtlUrl={
type === "hotel" &&
hotelInfos[selectedIndex]?.hotelDetailInfo?.hotelDtlUrl
}
productPrice={type === "hotel" && Price()}
logParams={logParamsRef.current}
/>
)}