Skip to content

Commit

Permalink
Remove no-unused-vars comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKVal committed Jun 7, 2015
1 parent d9b08d3 commit ddd5b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ButtonInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import childrenValueValidation from './utils/childrenValueInputValidation';

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

Expand Down

0 comments on commit ddd5b2e

Please sign in to comment.