Skip to content

Commit

Permalink
fix: fix style merging problem
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Feb 13, 2021
1 parent 2101ed6 commit c6aa69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/util/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const merge = <TObject, TSource>(
// @ts-ignore
if (obj(a[key])) {
// @ts-ignore
a[key] = merge(a[key], b[key])
a[key] = merge(assign({}, a[key]), b[key])
} else {
// @ts-ignore
a[key] = b[key]
Expand Down

0 comments on commit c6aa69c

Please sign in to comment.