Skip to content

Commit 48f312f

Browse files
committed
Comment out no-unused-vars eslint warnings back.
src/ButtonInput.js 9:9 warning bsStyle is defined but never used no-unused-vars 9:18 warning value is defined but never used no-unused-vars Alas, that was a bug, not a feature.
1 parent eeb7796 commit 48f312f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ButtonInput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import childrenValueValidation from './utils/childrenValueInputValidation';
66

77
class ButtonInput extends InputBase {
88
renderFormGroup(children) {
9-
let {bsStyle, value, ...other} = this.props; // eslint-disable-line object-shorthand
9+
let {bsStyle, value, ...other} = this.props; // eslint-disable-line object-shorthand, no-unused-vars
1010
return <FormGroup {...other}>{children}</FormGroup>;
1111
}
1212

0 commit comments

Comments
 (0)