Some cleaning

This commit is contained in:
2025-04-03 15:18:41 +02:00
parent b7e43ef351
commit 525e70c8bc
9 changed files with 145 additions and 285 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));
}