We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f3df83 commit b63a70cCopy full SHA for b63a70c
1 file changed
app/components/Snaps/SnapUIRenderer/utils.ts
@@ -73,6 +73,12 @@ function getChildrenForHash(component: JSXElement) {
73
return null;
74
}
75
76
+ // Prevent re-rendering when rendering forms, we don't care what children it contains
77
+ // since we can identify it by its name.
78
+ if (component.type === 'Form') {
79
+ return null;
80
+ }
81
+
82
const { children } = component.props;
83
84
// Field has special handling to determine the primary child to use for the key
0 commit comments