Skip to content

Commit

Permalink
fix: 🐛 prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed Jan 21, 2024
1 parent 2073fbd commit c3fc54f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/pages/challenges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const Challenges = () => (
<Heading text="Challenges" />
</HeaderContainer>
<Divider />
<div style={{marginTop: "5rem"}}> Will come soon ...</div>
<div style={{ marginTop: "5rem" }}> Will come soon ...</div>
</Page>
);
2 changes: 1 addition & 1 deletion frontend/src/components/pages/map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const Map = () => (
<Heading text="Map" />
</HeaderContainer>
<Divider />
<div style={{marginTop: "5rem"}}> Will come soon ...</div>
<div style={{ marginTop: "5rem" }}> Will come soon ...</div>
</Page>
);
2 changes: 1 addition & 1 deletion frontend/src/components/routers/sidebar/sidebar-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Link = styled(NavLink)`
}
&:hover {
color:white;
color: white;
}
`;

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ export const authenticatedRoutes = [
Routes.Statistics,
Routes.System,
Routes.Map,
Routes.Challenges
Routes.Challenges,
];

0 comments on commit c3fc54f

Please sign in to comment.