[shoptime-3994] feature brand panel 에서만 상품리스트로 포커싱 가도록 수정

This commit is contained in:
jiwon93.son
2025-11-07 10:41:29 +09:00
parent a9fb646766
commit 73c188d403

View File

@@ -1016,7 +1016,10 @@ const PlayerPanel = ({
} }
if (!panelInfo.modal && !videoVerticalVisible && !hasProperSpot) { if (!panelInfo.modal && !videoVerticalVisible && !hasProperSpot) {
if (panelInfo.shptmBanrTpNm === "LIVE" && shopNowInfo?.length > 0) { if (
panelInfo.sourcePanel === "featuredbrandspanel" &&
shopNowInfo?.length > 0
) {
shopNowFocusTimeoutJob.current.start(() => { shopNowFocusTimeoutJob.current.start(() => {
Spotlight.focus("playVideoShopNowBox"); Spotlight.focus("playVideoShopNowBox");
}); });