From 6c9562bc3e6c709d34c69eef66ab7a3dc99221b6 Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Mon, 2 Jun 2025 15:56:40 -0400 Subject: [PATCH] chore: small bit of a cleanup - removing unused dir --- ui/desktop/components/ui/popover.tsx | 31 ---------------------------- 1 file changed, 31 deletions(-) delete mode 100644 ui/desktop/components/ui/popover.tsx diff --git a/ui/desktop/components/ui/popover.tsx b/ui/desktop/components/ui/popover.tsx deleted file mode 100644 index d82e714959e1..000000000000 --- a/ui/desktop/components/ui/popover.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import * as React from "react" -import * as PopoverPrimitive from "@radix-ui/react-popover" - -import { cn } from "@/lib/utils" - -const Popover = PopoverPrimitive.Root - -const PopoverTrigger = PopoverPrimitive.Trigger - -const PopoverAnchor = PopoverPrimitive.Anchor - -const PopoverContent = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( - - - -)) -PopoverContent.displayName = PopoverPrimitive.Content.displayName - -export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }