From 51f77db6de8a49a01081180a1cbc340e2d7e2866 Mon Sep 17 00:00:00 2001 From: Dev TWIN0906 Date: Thu, 29 May 2025 10:59:33 +0900 Subject: [PATCH] =?UTF-8?q?SHOPTIME-4000=20hotpicks=20=EC=83=81=ED=92=88?= =?UTF-8?q?=EC=8D=B8=EB=84=A4=EC=9D=BC=20=EC=9D=B8=EB=94=94=EC=BC=80?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=88=AB=EC=9E=90=20=EA=B2=B9=EC=B9=A8?= =?UTF-8?q?=ED=98=84=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DetailPanel/components/indicator/ThemeIndicator.jsx | 6 +----- .../components/indicator/ThemeIndicatorArrow.jsx | 2 +- com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx | 2 -- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicator.jsx b/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicator.jsx index cf9700c1..4652f6c4 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicator.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicator.jsx @@ -350,11 +350,7 @@ function ThemeIndicator({ imageSelectedIndex={imageSelectedIndex} setImageSelectedIndex={setImageSelectedIndex} themeProductInfo={themeProductInfo} - imageLength={ - imageSelectedIndex === 0 && canPlayVideo && !launchedFromPlayer - ? imageLength + 1 - : imageLength - } + imageLength={imageLength} /> )} diff --git a/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicatorArrow.jsx b/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicatorArrow.jsx index ccae864b..e6ae38d9 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicatorArrow.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/components/indicator/ThemeIndicatorArrow.jsx @@ -31,7 +31,7 @@ export default function ThemeIndicatorArrow({ if (imageSelectedIndex > 0) { setImageSelectedIndex((prev) => prev - 1); - if (imageSelectedIndex === 0) { + if (imageSelectedIndex === 1) { return Spotlight.focus("thumbnailNextButton"); } } diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx index eabbee2e..a5a49e60 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx @@ -2051,7 +2051,6 @@ const PlayerPanel = ({ }; } else if (playListInfo?.[selectedIndex]) { const currentItem = playListInfo[selectedIndex]; - console.log("###visible", visible); return { visible, showType: isShowType, @@ -2093,7 +2092,6 @@ const PlayerPanel = ({ // 컴포넌트 언마운트 시에만 로그를 보냄 useEffect(() => { return () => { - console.log("###cleanup"); const params = createLogParams(false); if (params) { dispatch(sendLogTotalRecommend(params));