Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherjbaker committed Jul 12, 2024
1 parent d858cfc commit e613c56
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/core/src/parseChildren.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ function parseChild(
)

const styles = {}
for (let [key, value] of input) {
key = toCamelCase(key)
for (const [key, value] of input) {
const camelKey = toCamelCase(key)

styles[key] = value
// @ts-ignore
styles[camelKey] = value
}

// @ts-ignore
Expand Down

0 comments on commit e613c56

Please sign in to comment.