diff --git a/src/features/MatchPage/components/LiveMatch/helpers.tsx b/src/features/MatchPage/components/LiveMatch/helpers.tsx index 7b4aefc8..d5492b1f 100644 --- a/src/features/MatchPage/components/LiveMatch/helpers.tsx +++ b/src/features/MatchPage/components/LiveMatch/helpers.tsx @@ -23,9 +23,7 @@ const getFullMatchChapters = ( playlist: MatchPlaylistOption, ) => { const bound = find(profile?.video_bounds, { h: FULL_MATCH_BOUNDARY }) - const durationMs = profile?.has_video - ? (playlist.duration ?? 0) * 1000 - : (Number(bound?.e) - Number(bound?.s)) * 1000 + const durationMs = (playlist.duration ?? 0) * 1000 return [ { duration: durationMs,