From 3cf3b329e4ac0b7fcfc409af00e19324a6574003 Mon Sep 17 00:00:00 2001 From: Mirlan Date: Tue, 21 Sep 2021 20:16:50 +0600 Subject: [PATCH] feat(ott-1668): fix match page bug (#496) (#497) Co-authored-by: PolyakovaM <55061222+PolyakovaM@users.noreply.github.com> --- src/features/MatchPage/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/MatchPage/index.tsx b/src/features/MatchPage/index.tsx index d57e893d..467ed033 100644 --- a/src/features/MatchPage/index.tsx +++ b/src/features/MatchPage/index.tsx @@ -16,7 +16,7 @@ import { Wrapper } from './styled' const MatchPage = () => { usePageLogger() const profile = useMatchProfile() - const playFromScout = !profile?.live + const playFromScout = profile?.has_video && !profile?.live const playFromOTT = !profile?.has_video && (profile?.live || profile?.storage) return (