diff --git a/app/registry/new-york/ui/sidebar.tsx b/app/registry/new-york/ui/sidebar.tsx index f6541ddeadb..24e159279d7 100644 --- a/app/registry/new-york/ui/sidebar.tsx +++ b/app/registry/new-york/ui/sidebar.tsx @@ -5,25 +5,25 @@ import { Slot } from "@radix-ui/react-slot" import { cva, VariantProps } from "class-variance-authority" import { PanelLeftIcon } from "lucide-react" -import { useIsMobile } from "@/registry/new-york-v4/hooks/use-mobile" -import { cn } from "@/registry/new-york-v4/lib/utils" -import { Button } from "@/registry/new-york-v4/ui/button" -import { Input } from "@/registry/new-york-v4/ui/input" -import { Separator } from "@/registry/new-york-v4/ui/separator" +import { useIsMobile } from "@/hooks/use-mobile" +import { cn } from "@/lib/utils" +import { Button } from "@/registry/new-york/ui/button" +import { Input } from "@/registry/new-york/ui/input" +import { Separator } from "@/registry/new-york/ui/separator" import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle, -} from "@/registry/new-york-v4/ui/sheet" -import { Skeleton } from "@/registry/new-york-v4/ui/skeleton" +} from "@/registry/new-york/ui/sheet" +import { Skeleton } from "@/registry/new-york/ui/skeleton" import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, -} from "@/registry/new-york-v4/ui/tooltip" +} from "@/registry/new-york/ui/tooltip" const SIDEBAR_COOKIE_NAME = "sidebar_state" const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7