Skip to content

Commit 0852c2e

Browse files
committed
Fix SignUp issues
1 parent 300abb9 commit 0852c2e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/react/src/utils/v2/flowTransformer.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,11 @@ const applyInputRefMapping = (
148148

149149
// If this is an action component, map its id to the nextNode
150150
// Store the nextNode reference as actionRef property for later use
151-
if (transformedComponent.type === 'ACTION' && transformedComponent.id && actionMapping.has(transformedComponent.id)) {
151+
if (
152+
transformedComponent.type === 'ACTION' &&
153+
transformedComponent.id &&
154+
actionMapping.has(transformedComponent.id)
155+
) {
152156
transformedComponent.actionRef = actionMapping.get(transformedComponent.id);
153157
}
154158

0 commit comments

Comments
 (0)