diff --git a/src/features/MatchPage/index.tsx b/src/features/MatchPage/index.tsx index 2ee3985f..1b445acf 100644 --- a/src/features/MatchPage/index.tsx +++ b/src/features/MatchPage/index.tsx @@ -30,7 +30,7 @@ const MatchPage = () => { const playFromOTT = !profile?.has_video && (profile?.live || profile?.storage) // TODO Добавить попап 'Данный матч ещё не начался' - if (!isStarted && profile) { + if (!isStarted && profile?.live === false) { const sportName = history.location.pathname.split('/')[1] history.push(`/${sportName}/tournaments/${profile.tournament.id}`) }