Skip to content

Commit 760a167

Browse files
jamschdanstepanov
authored andcommitted
fix: preserve left/right props on deepMergeConfig
1 parent 0313df6 commit 760a167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/native/styles/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ function deepMergeConfig(
362362
result = Object.assign({}, left, right);
363363
}
364364
} else {
365-
result = { ...left };
365+
result = Object.assign({}, left, right);
366366
}
367367

368368
if (

0 commit comments

Comments
 (0)