diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx index b93ea95c..6e7d60fa 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx @@ -1020,9 +1020,17 @@ const PlayerPanel = ({ panelInfo.sourcePanel === "featuredbrandspanel" && shopNowInfo?.length > 0 ) { - shopNowFocusTimeoutJob.current.start(() => { + 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);