From 23c12c0062e402e23fab06ef5142d8519b6cd2c7 Mon Sep 17 00:00:00 2001 From: Andres Velasco Date: Sun, 16 Jun 2024 20:20:34 -0500 Subject: [PATCH] fix(popover): fix lint issues --- src/app/_shared/components/ui/popover.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/_shared/components/ui/popover.tsx b/src/app/_shared/components/ui/popover.tsx index a0ec48b..fd4bf85 100644 --- a/src/app/_shared/components/ui/popover.tsx +++ b/src/app/_shared/components/ui/popover.tsx @@ -1,9 +1,10 @@ -"use client" +'use client' -import * as React from "react" -import * as PopoverPrimitive from "@radix-ui/react-popover" +import * as React from 'react' -import { cn } from "@/lib/utils" +import * as PopoverPrimitive from '@radix-ui/react-popover' + +import { cn } from '@/lib/utils' const Popover = PopoverPrimitive.Root @@ -12,14 +13,14 @@ const PopoverTrigger = PopoverPrimitive.Trigger const PopoverContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef ->(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( +>(({ className, align = 'center', sideOffset = 4, ...props }, ref) => (