@ -2,6 +2,7 @@ import { Fragment } from 'react'
import isEmpty from 'lodash/isEmpty'
import isEmpty from 'lodash/isEmpty'
import { useMatchSwitchesStore } from 'features/MatchSwitches'
import { Name } from 'features/Name'
import { Name } from 'features/Name'
import { MediaQuery } from 'features/MediaQuery'
import { MediaQuery } from 'features/MediaQuery'
import { useMatchPopupStore } from 'features/MatchPopup'
import { useMatchPopupStore } from 'features/MatchPopup'
@ -21,6 +22,8 @@ import {
export const FinishedPlaylistPage = ( ) = > {
export const FinishedPlaylistPage = ( ) = > {
const { match , matchPlaylists } = useMatchPopupStore ( )
const { match , matchPlaylists } = useMatchPopupStore ( )
const { isScoreHidden } = useMatchSwitchesStore ( )
if ( ! match ) return null
if ( ! match ) return null
const { team1 , team2 } = match
const { team1 , team2 } = match
@ -40,7 +43,7 @@ export const FinishedPlaylistPage = () => {
< HeaderTitle >
< HeaderTitle >
< Name nameObj = { team1 } / >
< Name nameObj = { team1 } / >
{ score }
{ isScoreHidden ? ' - ' : score }
< Name nameObj = { team2 } / >
< Name nameObj = { team2 } / >
< / HeaderTitle >
< / HeaderTitle >