Skip to content

Commit e3ff145

Browse files
committed
remove deep cloning of inputs
1 parent 1cbde17 commit e3ff145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime/src/runtime/customWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const createCustomWidget = (
4343
<CustomScopeProvider value={values ?? inputs}>
4444
<OnLoadAction
4545
action={widget.onLoad}
46-
context={{ ...(values ?? inputs) }}
46+
context={values ?? inputs}
4747
rawInputs={inputs}
4848
>
4949
{EnsembleRuntime.render([widget.body])}

0 commit comments

Comments
 (0)