fix: 🚑 Fix issues caused by shadcn-vue update

This commit is contained in:
Jesse Wierzbinski 2025-05-28 21:16:22 +02:00
parent 25e4892137
commit 3749ea86e2
No known key found for this signature in database
3 changed files with 8 additions and 8 deletions

6
lib/utils.ts Normal file
View file

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