[PlayerPanel] TabContents feturedShows percent gauge update

This commit is contained in:
고동영
2024-05-24 13:59:49 +09:00
parent 9d7328ae09
commit 9d1f659289
4 changed files with 46 additions and 82 deletions

View File

@@ -11,7 +11,11 @@ import PlayerItemCard, { TYPES } from "../../PlayerItemCard/PlayerItemCard";
import css from "./LiveChannelContents.module.less";
import PlayerTabLoading from "./PlayerTabLoading";
export default function LiveChannelContents({ liveInfos, setSelectedIndex }) {
export default function LiveChannelContents({
liveInfos,
selectedIndex,
setSelectedIndex,
}) {
const dispatch = useDispatch();
const renderItem = useCallback(
@@ -55,6 +59,7 @@ export default function LiveChannelContents({ liveInfos, setSelectedIndex }) {
onClick={handleItemClick}
type={TYPES.liveHorizontal}
spotlightId={`tabChannel-video-${index}`}
liveInfo={liveInfos[index]}
/>
);
},