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 92316d6 commit a0dd9d4Copy full SHA for a0dd9d4
src/withNextInputAutoFocus.js
@@ -13,7 +13,6 @@ const withNextInputAutoFocusContextType = {
13
getInputs = children =>
14
(isArray(children) ? children : [children]).reduce((partialInputs, child) => {
15
if (child.props && child.props.children) {
16
- debugger;
17
return partialInputs.concat(getInputs(child.props.children));
18
}
19
if (child && child.props && !!child.props.name) return partialInputs.concat(child);
0 commit comments