From c8771142d52c177b1049a01f32ea58b149b93807 Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Thu, 10 Oct 2024 15:13:06 +0200 Subject: [PATCH] fix --- src/client/lib/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/lib/util.ts b/src/client/lib/util.ts index e9d5b60..38450a9 100644 --- a/src/client/lib/util.ts +++ b/src/client/lib/util.ts @@ -33,7 +33,7 @@ export const trottleDebounce = ( } } -type ClassValue = string | ClassValue[] | Record | false | undefined +export type ClassValue = string | ClassValue[] | Record | false | undefined export function clsx(...args: ClassValue[]): string { return args