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