From 5b40e24aabacee3a1d7191be719b6a78444e0b65 Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Sun, 22 Mar 2026 11:46:45 +0100 Subject: [PATCH] fix: correct import paths in DashboardLayoutClient (drop /src/ prefix) --- app/(dashboard)/DashboardLayoutClient.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/(dashboard)/DashboardLayoutClient.tsx b/app/(dashboard)/DashboardLayoutClient.tsx index 28c9a447..2e3d55d7 100644 --- a/app/(dashboard)/DashboardLayoutClient.tsx +++ b/app/(dashboard)/DashboardLayoutClient.tsx @@ -8,12 +8,12 @@ import { LayoutDashboard, ArrowLeftRight, Cable, KeyRound, ShieldCheck, ShieldOff, BarChart2, History, Settings, LogOut, Menu, Sun, Moon, } from "lucide-react"; -import { Sheet, SheetContent } from "@/src/components/ui/sheet"; -import { Button } from "@/src/components/ui/button"; -import { Avatar, AvatarFallback, AvatarImage } from "@/src/components/ui/avatar"; -import { Separator } from "@/src/components/ui/separator"; -import { ScrollArea } from "@/src/components/ui/scroll-area"; -import { cn } from "@/src/lib/utils"; +import { Sheet, SheetContent } from "@/components/ui/sheet"; +import { Button } from "@/components/ui/button"; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { Separator } from "@/components/ui/separator"; +import { ScrollArea } from "@/components/ui/scroll-area"; +import { cn } from "@/lib/utils"; type User = { id: string;