Fix deprecated FormEvent type and normalize code formatting

This commit is contained in:
Aiden Smith
2026-02-24 13:03:34 -05:00
parent 0c6ab72561
commit 9a80accaf9
9 changed files with 160 additions and 160 deletions

View File

@@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}