Fix linting error

This commit is contained in:
Michael Jackson 2017-03-24 17:35:38 -07:00
parent 503b24e8d0
commit 7235fdfb0b
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class NumberTextInput extends React.Component {
render = () => {
const { value } = this.state
const { parseNumber, formatNumber, ...props } = this.props
const { parseNumber, formatNumber, ...props } = this.props // eslint-disable-line no-unused-vars
const displayValue = formatNumber(value)
return (