Skip to content

Commit 54dd9fa

Browse files
committed
Merge pull request react-bootstrap#791 from AlexKVal/eslint
Comment out no-unused-vars eslint warnings back.
2 parents eeb7796 + 48f312f commit 54dd9fa

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)