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));