We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536dff4 commit 88c1308Copy full SHA for 88c1308
1 file changed
packages/webpack-plugin/lib/runtime/optionProcessorReact.js
@@ -14,15 +14,15 @@ export function getAsyncSuspense (commonProps) {
14
if (commonProps.type === 'component') {
15
result = memo(forwardRef(function (props, ref) {
16
return createElement(AsyncSuspense,
17
- extend(commonProps, {
+ extend({}, commonProps, {
18
innerProps: Object.assign({}, props, { ref })
19
})
20
)
21
}))
22
} else {
23
result = memo(function (props) {
24
25
26
innerProps: props
27
28
0 commit comments