fix: restore sidebar layout (fix broken quotes)
All checks were successful
Build & Deploy Dashboard / deploy (push) Successful in 1m6s

This commit is contained in:
Cosmo
2026-04-20 07:31:40 +00:00
parent 32017f8cdd
commit 211f4c4d5f

View File

@@ -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>