style(web): match ui/ no-semicolon convention in PageTitle (#57)

This commit is contained in:
2026-06-07 17:11:29 +02:00
parent d3e88be70f
commit 40384d91dd
+3 -3
View File
@@ -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}
/>
);
)
}