We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80cb1c5 commit 9d977dbCopy full SHA for 9d977db
src/tools/cx.ts
@@ -23,7 +23,7 @@ export const cx = (...args: CxArg[]): string => {
23
break;
24
case "object": {
25
if (Array.isArray(arg)) {
26
- toAdd = cx(arg);
+ toAdd = cx(...arg);
27
} else {
28
assert(!typeGuard<{ length: number }>(arg, false));
29
0 commit comments