Skip to content

Commit

Permalink
lint and remove basecard (will add in future pr)
Browse files Browse the repository at this point in the history
  • Loading branch information
acrantel committed Aug 30, 2023
1 parent e5dc253 commit cd31148
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 35 deletions.
28 changes: 0 additions & 28 deletions frontend2/src/components/BaseCard.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion frontend2/src/components/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const Sidebar: React.FC<SidebarProps> = ({ collapsed }) => {
const { episodeId } = useContext(EpisodeContext);

return collapsed ? null : (
<nav className="z-10 hidden fixed w-52 top-16 h-full flex-col gap-8 bg-gray-50 py-4 drop-shadow-[2px_0_2px_rgba(0,0,0,0.25)] sm:flex">
<nav className="fixed top-16 z-10 hidden h-full w-52 flex-col gap-8 bg-gray-50 py-4 drop-shadow-[2px_0_2px_rgba(0,0,0,0.25)] sm:flex">
<SidebarSection title="">
{generateSidebarItems(0, 2, episodeId)}
</SidebarSection>
Expand Down
7 changes: 2 additions & 5 deletions frontend2/src/content/bc23.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

export const BC23_QUICKSTART =
`This is the Battlecode 2023 contest website, which will be your main hub for all Battlecode-related things for the duration of the contest. For a general overview of what Battlecode is, visit [our landing page](https://battlecode.org/).
export const BC23_QUICKSTART = `This is the Battlecode 2023 contest website, which will be your main hub for all Battlecode-related things for the duration of the contest. For a general overview of what Battlecode is, visit [our landing page](https://battlecode.org/).
## Create an account and team
Expand All @@ -25,8 +23,7 @@ Next, you should download the [Battlecode 2023 scaffold](https://github.com/batt
# Troubleshooting
`;

export const BC23_RESOURCES =
`# Markdown syntax guide
export const BC23_RESOURCES = `# Markdown syntax guide
## Headers
Expand Down
1 change: 0 additions & 1 deletion frontend2/src/views/QuickStart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ const QuickStart: React.FC = () => {
};

export default QuickStart;
// todo this file

0 comments on commit cd31148

Please sign in to comment.