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 300abb9 commit 0852c2eCopy full SHA for 0852c2e
packages/react/src/utils/v2/flowTransformer.ts
@@ -148,7 +148,11 @@ const applyInputRefMapping = (
148
149
// If this is an action component, map its id to the nextNode
150
// Store the nextNode reference as actionRef property for later use
151
- if (transformedComponent.type === 'ACTION' && transformedComponent.id && actionMapping.has(transformedComponent.id)) {
+ if (
152
+ transformedComponent.type === 'ACTION' &&
153
+ transformedComponent.id &&
154
+ actionMapping.has(transformedComponent.id)
155
+ ) {
156
transformedComponent.actionRef = actionMapping.get(transformedComponent.id);
157
}
158
0 commit comments