diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx index 68dbf77f..c88b49f3 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx @@ -894,10 +894,13 @@ export default function ProductAllSection({ // BUY NOW, ADD TO CART 버튼에서 arrow up 시: 항상 헤더 뒤로가기 버튼으로 const handleSpotlightUpFromBuyButtons = useCallback((e) => { e.stopPropagation(); - if(promotions){ + if(promotions && promotions.length > 0){ Spotlight.focus('detail-coupon-button'); } else { - Spotlight.focus('spotlightId_backBtn'); + // 쿠폰 버튼이 없을 때 뒤로가기 버튼으로 포커스 이동 (특정 Chrome 버전에서의 포커스 문제 해결) + setTimeout(() => { + Spotlight.focus('spotlightId_backBtn'); + }, 0); } }, [promotions]);