File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ;
55import ViewScores from "../ViewScores" ;
66import ChangeRound from "../changeRound" ;
77
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments