From 5a8d44ed798100ef935dda292c90bd2fb570c25d Mon Sep 17 00:00:00 2001 From: "jiwon93.son" Date: Fri, 7 Nov 2025 14:14:16 +0900 Subject: [PATCH] =?UTF-8?q?[shoptime-3994]=20=EB=9D=BC=EC=9D=B4=EB=B8=8C?= =?UTF-8?q?=20=EC=83=81=ED=92=88=20=ED=81=B4=EB=A6=AD=EC=8B=9C=20=ED=8F=AC?= =?UTF-8?q?=EC=BB=A4=EC=8A=A4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/PlayerPanel/PlayerPanel.jsx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx index dd96260a..237c2f84 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx @@ -327,7 +327,6 @@ const PlayerPanel = ({ const panelInfoRef = usePrevious(panelInfo); const initialFocusTimeoutJob = useRef(new Job((func) => func(), 100)); - const shopNowFocusTimeoutJob = useRef(new Job((func) => func(), 100)); const liveLogParamsRef = useRef(null); const vodLogParamsRef = useRef(null); const mediaLogParamsRef = useRef(null); @@ -1035,23 +1034,6 @@ const PlayerPanel = ({ } if (!panelInfo.modal && !videoVerticalVisible && !hasProperSpot) { - if ( - panelInfo.sourcePanel === "featuredbrandspanel" && - shopNowInfo?.length > 0 - ) { - const shopNowElement = document.querySelector( - '[data-spotlight-id="playVideoShopNowBox"]' - ); - - if (shopNowElement) { - Spotlight.focus("playVideoShopNowBox"); - } else { - shopNowFocusTimeoutJob.current.start(() => { - Spotlight.focus("playVideoShopNowBox"); - }); - } - return; - } Spotlight.focus(SpotlightIds.PLAYER_TAB_BUTTON); return; }