fix: restore sidebar layout (fix broken quotes)
All checks were successful
Build & Deploy Dashboard / deploy (push) Successful in 1m6s
All checks were successful
Build & Deploy Dashboard / deploy (push) Successful in 1m6s
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { Sidebar } from @/components/layout/Sidebar;
|
||||
import { Sidebar } from "@/components/layout/Sidebar";
|
||||
|
||||
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<div className=flex h-screen overflow-hidden>
|
||||
<div className="flex h-screen overflow-hidden">
|
||||
<Sidebar />
|
||||
<div className=flex-1 overflow-y-auto>
|
||||
<div className="flex-1 overflow-y-auto">
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user