diff --git a/web/src/components/ui/page-title.tsx b/web/src/components/ui/page-title.tsx index e2bb3f4..d4507c5 100644 --- a/web/src/components/ui/page-title.tsx +++ b/web/src/components/ui/page-title.tsx @@ -1,6 +1,6 @@ -import type { ComponentProps } from "react"; +import type { ComponentProps } from "react" -import { cn } from "@/lib/utils"; +import { cn } from "@/lib/utils" export function PageTitle({ className, ...props }: ComponentProps<"h1">) { return ( @@ -9,5 +9,5 @@ export function PageTitle({ className, ...props }: ComponentProps<"h1">) { className={cn("text-2xl font-semibold tracking-tight", className)} {...props} /> - ); + ) }