fix semi colons

This commit is contained in:
Thijs van Loef
2025-06-09 23:52:16 +02:00
parent 3ee9051bc1
commit cbca88f76b
21 changed files with 261 additions and 261 deletions

View File

@@ -1,11 +1,11 @@
"use client"
"use client";
import * as React from "react"
import * as PopoverPrimitive from "@radix-ui/react-popover"
import * as React from "react";
import * as PopoverPrimitive from "@radix-ui/react-popover";
import { cn } from "@app/lib/cn"
import { cn } from "@app/lib/cn";
const Popover = PopoverPrimitive.Root
const Popover = PopoverPrimitive.Root;
const PopoverTrigger = React.forwardRef<
React.ElementRef<typeof PopoverPrimitive.Trigger>,
@@ -16,7 +16,7 @@ const PopoverTrigger = React.forwardRef<
className={cn(className, "rounded-md")}
{...props}
/>
))
));
const PopoverContent = React.forwardRef<
React.ElementRef<typeof PopoverPrimitive.Content>,
@@ -34,7 +34,7 @@ const PopoverContent = React.forwardRef<
{...props}
/>
</PopoverPrimitive.Portal>
))
PopoverContent.displayName = PopoverPrimitive.Content.displayName
));
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
export { Popover, PopoverTrigger, PopoverContent }
export { Popover, PopoverTrigger, PopoverContent };