Skip to content

Commit a0dd9d4

Browse files
authored
fix(getInputs): remove unecessary debugger statement
1 parent 92316d6 commit a0dd9d4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/withNextInputAutoFocus.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ const withNextInputAutoFocusContextType = {
1313
getInputs = children =>
1414
(isArray(children) ? children : [children]).reduce((partialInputs, child) => {
1515
if (child.props && child.props.children) {
16-
debugger;
1716
return partialInputs.concat(getInputs(child.props.children));
1817
}
1918
if (child && child.props && !!child.props.name) return partialInputs.concat(child);

0 commit comments

Comments
 (0)