Skip to content

Commit a536a98

Browse files
committed
"pnpm run format ; pnpm run lint"
1 parent 16b2e6e commit a536a98

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/app/HomePage.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { LeaderboardRecord, Prize } from "@/src/util/dataTypes";
2121
export default function HomePage({
2222
hackeroonPrizes,
2323
leaderboardData,
24-
noTrackAnimation
24+
noTrackAnimation,
2525
}: {
2626
hackeroonPrizes: Promise<Prize[]>;
2727
leaderboardData: Promise<LeaderboardRecord[]>;
@@ -183,7 +183,9 @@ export default function HomePage({
183183

184184
{/* TODO - release all of these the day of the event */}
185185
<div id="tracks" ref={tracksRef} className="w-full">
186-
<TracksSection noTrackAnimation={noTrackAnimation} />
186+
<TracksSection
187+
noTrackAnimation={noTrackAnimation}
188+
/>
187189
</div>
188190

189191
<div

src/components/landing-page/TrackSection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import Tracks from "./(TracksSectionComponents)/TracksTabNavigation/Tracks";
2222
import { Track } from "@/src/util/dataTypes";
2323

2424
import LivePoll from "./(AboutSectionComponents)/LivePoll";
25-
import { ReadonlyRequestCookies } from "next/dist/server/web/spec-extension/adapters/request-cookies";
2625
import { actionSetTracksAnimation } from "@/src/util/actions/animation";
2726

2827
const TracksSection = ({ noTrackAnimation }: { noTrackAnimation: boolean }) => {

0 commit comments

Comments
 (0)