Skip to content

Commit b9ae13c

Browse files
finally fixed navbar
1 parent acf58b4 commit b9ae13c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/components/columns/LeaderBoardCol.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
2-
import { leaderboardSchema } from "@/api/leaderboard";
3-
import { ColumnDef } from "@tanstack/react-table";
4-
import { z } from "zod";
2+
import { type leaderboardSchema } from "@/api/leaderboard";
3+
import { type ColumnDef } from "@tanstack/react-table";
4+
import { type z } from "zod";
55
import ViewScores from "../ViewScores";
66
import ChangeRound from "../changeRound";
77

src/components/navigation-wrapper.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ export function NavigationWrapper({ children }: { children: React.ReactNode }) {
1515

1616
return (
1717
<div className="flex h-screen w-screen bg-black">
18-
<Sidebar />
18+
<div className="hidden md:block">
19+
<Sidebar />
20+
</div>
1921
<div className="flex flex-1 flex-col">
2022
<Navbar />
2123
<main className="overflow-y-scroll p-8">{children}</main>

0 commit comments

Comments
 (0)