diff --git a/src/features/MatchPage/components/MatchProfileCard/index.tsx b/src/features/MatchPage/components/MatchProfileCard/index.tsx index c114c6bb..781994fd 100644 --- a/src/features/MatchPage/components/MatchProfileCard/index.tsx +++ b/src/features/MatchPage/components/MatchProfileCard/index.tsx @@ -11,7 +11,6 @@ import { Wrapper, Team, Score, - Dash, StyledLink, ScoreWrapper, Logo, @@ -51,7 +50,7 @@ export const MatchProfileCard = ({ profile }: Props) => { { isScoreHidden - ? + ? '-' : ( {team1.score} - {team2.score} diff --git a/src/features/MatchPage/components/MatchProfileCard/styled.tsx b/src/features/MatchPage/components/MatchProfileCard/styled.tsx index a4b3275d..9a313def 100644 --- a/src/features/MatchPage/components/MatchProfileCard/styled.tsx +++ b/src/features/MatchPage/components/MatchProfileCard/styled.tsx @@ -47,14 +47,6 @@ export const StyledLink = styled(ProfileLink)` } ` -export const Dash = styled.span` - display: inline-block; - margin-top: 5px; - width: 30px; - height: 3px; - background-color: white; -` - export const ScoreWrapper = styled.div` margin: 0 10px; `