[영상 작동 수정]

- 영상 화면 live next 버튼에 포커스가 가면 영상 리스트가 노출되도록 변경.
 - onFocus 추가하여 focus시 작동하도록 변경.
This commit is contained in:
junghoon86.park
2025-12-04 15:51:19 +09:00
parent 37574c0794
commit 49f137620b
2 changed files with 4 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ export default function TabContainerV2({
onTabClose, // 탭 닫기 콜백 함수
tabVisible,
}) {
const youmaylikeInfos = useSelector((state) => state.main.youmaylikeInfos);
const youmaylikeInfos = useSelector((state) => state.main.youmaylikeInfos);
// 다음 재생 가능한 쇼 찾기
const findNextPlayableShow = useCallback((currentPlayList, currentIndex) => {
@@ -337,6 +337,7 @@ export default function TabContainerV2({
}
onClick={onLiveNext}
spotlightId="live-channel-next-button"
onFocus={onLiveNext}
/>
<ShopNowButton onClick={onShopNowButtonClick} />
</>