Fix: indenting on cn utils func

This commit is contained in:
Aroy-Art 2025-02-27 11:22:04 +01:00
parent 4a556e51fc
commit 0ce4dc12bd
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

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