diff --git a/surfsense_web/components/ui/checkbox.tsx b/surfsense_web/components/ui/checkbox.tsx index 0936a383e..586e3e602 100644 --- a/surfsense_web/components/ui/checkbox.tsx +++ b/surfsense_web/components/ui/checkbox.tsx @@ -1,7 +1,7 @@ "use client"; import { CheckIcon } from "lucide-react"; -import { Checkbox as CheckboxPrimitive } from "radix-ui"; +import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; import type * as React from "react"; import { cn } from "@/lib/utils"; diff --git a/surfsense_web/components/ui/dropdown-menu.tsx b/surfsense_web/components/ui/dropdown-menu.tsx index 24b99467e..2904b93dd 100644 --- a/surfsense_web/components/ui/dropdown-menu.tsx +++ b/surfsense_web/components/ui/dropdown-menu.tsx @@ -1,7 +1,7 @@ "use client"; import { CheckIcon, ChevronRightIcon, CircleIcon } from "lucide-react"; -import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui"; +import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"; import type * as React from "react"; import { cn } from "@/lib/utils"; diff --git a/surfsense_web/components/ui/separator.tsx b/surfsense_web/components/ui/separator.tsx index 63b8e6a69..d7cf2cd81 100644 --- a/surfsense_web/components/ui/separator.tsx +++ b/surfsense_web/components/ui/separator.tsx @@ -1,6 +1,6 @@ "use client"; -import { Separator as SeparatorPrimitive } from "radix-ui"; +import * as SeparatorPrimitive from "@radix-ui/react-separator"; import type * as React from "react"; import { cn } from "@/lib/utils"; diff --git a/surfsense_web/components/ui/toggle-group.tsx b/surfsense_web/components/ui/toggle-group.tsx index eb212182a..33aa433b2 100644 --- a/surfsense_web/components/ui/toggle-group.tsx +++ b/surfsense_web/components/ui/toggle-group.tsx @@ -1,7 +1,7 @@ "use client"; import type { VariantProps } from "class-variance-authority"; -import { ToggleGroup as ToggleGroupPrimitive } from "radix-ui"; +import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import * as React from "react"; import { toggleVariants } from "@/components/ui/toggle"; import { cn } from "@/lib/utils"; diff --git a/surfsense_web/components/ui/toggle.tsx b/surfsense_web/components/ui/toggle.tsx index 5841cdc35..f0e68cec9 100644 --- a/surfsense_web/components/ui/toggle.tsx +++ b/surfsense_web/components/ui/toggle.tsx @@ -1,7 +1,7 @@ "use client"; import { cva, type VariantProps } from "class-variance-authority"; -import { Toggle as TogglePrimitive } from "radix-ui"; +import * as TogglePrimitive from "@radix-ui/react-toggle"; import type * as React from "react"; import { cn } from "@/lib/utils"; diff --git a/surfsense_web/components/ui/tooltip.tsx b/surfsense_web/components/ui/tooltip.tsx index c19ce6f82..2fc85aae4 100644 --- a/surfsense_web/components/ui/tooltip.tsx +++ b/surfsense_web/components/ui/tooltip.tsx @@ -1,6 +1,6 @@ "use client"; -import { Tooltip as TooltipPrimitive } from "radix-ui"; +import * as TooltipPrimitive from "@radix-ui/react-tooltip"; import type * as React from "react"; import { cn } from "@/lib/utils";