Skip to content

Commit e613c56

Browse files
author
Christopher J Baker
committed
fix
1 parent d858cfc commit e613c56

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/core/src/parseChildren.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@ function parseChild(
5555
)
5656

5757
const styles = {}
58-
for (let [key, value] of input) {
59-
key = toCamelCase(key)
58+
for (const [key, value] of input) {
59+
const camelKey = toCamelCase(key)
6060

61-
styles[key] = value
61+
// @ts-ignore
62+
styles[camelKey] = value
6263
}
6364

6465
// @ts-ignore

0 commit comments

Comments
 (0)