From ddd5b2ec05a4afed5ebd55e27df18d82a2244acf Mon Sep 17 00:00:00 2001 From: AlexKVal Date: Sun, 7 Jun 2015 12:36:12 +0300 Subject: [PATCH] Remove no-unused-vars comment. --- src/ButtonInput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ButtonInput.js b/src/ButtonInput.js index 8667df0178..864938f093 100644 --- a/src/ButtonInput.js +++ b/src/ButtonInput.js @@ -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 {children}; }