diff --git a/src/config/lexics/indexLexics.tsx b/src/config/lexics/indexLexics.tsx index e6f62c6a..059418c6 100644 --- a/src/config/lexics/indexLexics.tsx +++ b/src/config/lexics/indexLexics.tsx @@ -17,6 +17,7 @@ const matchPopupLexics = { team_players: 13398, watch_from: 13022, watch_live_stream: 13020, + watch_players_episodes: 14052, } const buyMatchPopupLexics = { diff --git a/src/features/Common/Button/styled.tsx b/src/features/Common/Button/styled.tsx index fd00b4d6..a676317f 100644 --- a/src/features/Common/Button/styled.tsx +++ b/src/features/Common/Button/styled.tsx @@ -4,7 +4,7 @@ import { devices } from 'config/devices' const baseButtonStyles = css` width: 272px; - height: 48px; + height: 50px; border-width: 0.7px; border-style: solid; border-radius: 2px; @@ -37,7 +37,8 @@ export const solidButtonStyles = css` color: #fff; font-weight: bold; border-color: transparent; - background: ${({ theme: { colors } }) => colors.primary}; + background-color: #294FC4; + box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3); /* TODO: удалить медиа запросы из стайледа, добавить специфичные юз кейсу правила diff --git a/src/features/MatchPage/helpers/buildChapters.tsx b/src/features/MatchPage/helpers/buildChapters.tsx index 5c71354f..c74bcfac 100644 --- a/src/features/MatchPage/helpers/buildChapters.tsx +++ b/src/features/MatchPage/helpers/buildChapters.tsx @@ -10,12 +10,15 @@ import groupBy from 'lodash/groupBy' import type { Videos, - PlaylistData, + Episodes, Episode, } from 'requests' import type { Chapters, Urls } from 'features/MultiSourcePlayer/types' +import type { PlaylistOption } from '../types' +import { FULL_GAME_KEY } from './buildPlaylists' + const getUniquePeriods = (videos: Videos) => uniq(map(videos, ({ period }) => period)) type Video = { @@ -88,10 +91,10 @@ const getEpisodeUrls = (urls: Urls, episode: Episode) => reduce( {}, ) -const getPlaylistChapters = (videos: Array