This commit is contained in:
garronej 2023-02-26 15:35:30 +01:00
parent 0f47a5b6ba
commit 5aadeba2ec

View File

@ -17,7 +17,7 @@ export const clsx = (...args: CxArg[]): string => {
break;
case "object": {
if (Array.isArray(arg)) {
toAdd = clsx(arg);
toAdd = clsx(...arg);
} else {
assert(!typeGuard<{ length: number }>(arg, false));