Skip to content

Commit b3e614a

Browse files
committed
Remove extra parantheses breaking CSS component
This caused the CSS to break which again caused the styled component to always render. This meant the auto scheduling page would have both the calendar and the list view rendered simultaneously.
1 parent 8e76623 commit b3e614a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/components/Pages/FrontPage/AutoScheduleSection/AutoScheduleSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const StyledDesktopView = styled.div`
4949
`
5050

5151
const StyledPhoneView = styled.div`
52-
@media (min-width: ${phone_width}) ) {
52+
@media (min-width: ${phone_width}) {
5353
display: none;
5454
}
5555
`

0 commit comments

Comments
 (0)