Skip to content

Commit 6f81f3d

Browse files
committed
remove key error
1 parent 99c0170 commit 6f81f3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@atomico/react",
3-
"version": "2.5.1",
3+
"version": "2.5.2",
44
"type": "module",
55
"description": "",
66
"types": "./wrapper.d.ts",

src/core/create-wrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ export const createWrapper =
102102
children,
103103
];
104104
}
105-
return createElement(is || tagName, nextProps, children);
105+
return createElement(is || tagName, nextProps, ...children);
106106
}
107107
) as Component<Base>;

0 commit comments

Comments
 (0)