Skip to content
This repository has been archived by the owner on Sep 11, 2018. It is now read-only.

Commit

Permalink
chore(HomeView): remove superfluous parenthesis in connect
Browse files Browse the repository at this point in the history
  • Loading branch information
David Zukowski committed Apr 18, 2016
1 parent 8f08025 commit 9c923a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/HomeView/HomeView.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class HomeView extends React.Component<void, Props, void> {
const mapStateToProps = (state) => ({
counter: state.counter
})
export default connect((mapStateToProps), {
export default connect(mapStateToProps, {
increment: () => increment(1),
doubleAsync
})(HomeView)

0 comments on commit 9c923a9

Please sign in to comment.