diff --git a/src/layouts/Product/BuyInfo/ButtonBundles/index.tsx b/src/layouts/Product/BuyInfo/ButtonBundles/index.tsx index 0d758ab6..f89123fa 100644 --- a/src/layouts/Product/BuyInfo/ButtonBundles/index.tsx +++ b/src/layouts/Product/BuyInfo/ButtonBundles/index.tsx @@ -130,6 +130,12 @@ const ButtonBundles = ({ }); }; + // 친구 프로필 이미지 클릭 핸들러 + const handleClickProfile = (e: React.MouseEvent) => { + e.stopPropagation(); + openKakaoPicker(); + }; + // 선물상자 담기 버튼 핸들러 const handleClickCart = () => { // console.log('선물상자 담기'); @@ -188,7 +194,7 @@ const ButtonBundles = ({ onClick={handleClickGiftForFriend} className={styles.btn_gift} > -
+