Skip to content

Commit

Permalink
Lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
acupoftee committed Apr 17, 2020
1 parent 1d56fee commit 85265fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderer/components/Schedule/MatchCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Card = styled(Flex)`
const Team = styled(Flex)<{
background: string
}>`
background-color: ${props => props.background};
background-color: ${(props) => props.background};
width: 50%;
height: 100%;
color: white;
Expand All @@ -55,7 +55,7 @@ const TeamLogo = styled.img`
const DateBar = styled(Flex)<{
live?: boolean
}>`
background-color: ${props => (props.live ? 'red' : 'gray')};
background-color: ${(props) => (props.live ? 'red' : 'gray')};
color: ${colors.white};
width: 100%;
height: 20px;
Expand All @@ -68,7 +68,7 @@ const DateBar = styled(Flex)<{
span {
font-size: 11px;
font-weight: 500;
color: ${props => (props.live ? 'red' : 'gray')};
color: ${(props) => (props.live ? 'red' : 'gray')};
}
`

Expand Down

0 comments on commit 85265fc

Please sign in to comment.