From 7d40b759777c57d7a4f032b7e6eb774fcfe5ad79 Mon Sep 17 00:00:00 2001 From: Aamir Azad <82281117+aamirazad@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:20:31 +0530 Subject: [PATCH] fix: resolve eslint errors by deleting popover component (#42) --- src/components/ui/popover.tsx | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/components/ui/popover.tsx diff --git a/src/components/ui/popover.tsx b/src/components/ui/popover.tsx deleted file mode 100644 index eb3e6a9..0000000 --- a/src/components/ui/popover.tsx +++ /dev/null @@ -1,31 +0,0 @@ -"use client" - -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 PopoverContent = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( - - - -)) -PopoverContent.displayName = PopoverPrimitive.Content.displayName - -export { Popover, PopoverTrigger, PopoverContent }