From 40384d91ddfaa23ce5c7982cc66df925602a22a2 Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Sun, 7 Jun 2026 17:11:29 +0200 Subject: [PATCH] style(web): match ui/ no-semicolon convention in PageTitle (#57) --- web/src/components/ui/page-title.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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} /> - ); + ) }