run prettier

This commit is contained in:
David Soria Parra
2024-11-04 21:29:59 +00:00
parent 752631f5a1
commit 216c8a15d5
12 changed files with 102 additions and 101 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));
}