Fixed object shorthand precommit error.

This commit is contained in:
Vincent 2018-03-09 13:19:37 +11:00
parent dfee98a6ce
commit 80f79c3e62
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ class SendButtonFactoryClass extends Component<Props> {
withOnClick={({ onClick }) =>
this.props.withProps({
disabled: toggleDisabled ? (stateTransaction !== null ? false : true) : false,
onClick: onClick
onClick
})
}
Modal={this.props.Modal}
@ -84,7 +84,7 @@ class SendButtonFactoryClass extends Component<Props> {
withOnClick={({ onClick }) =>
this.props.withProps({
disabled: toggleDisabled ? (stateTransaction !== null ? false : true) : false,
onClick: onClick
onClick
})
}
Modal={this.props.Modal}