diff --git a/src/components/local-form-component.js b/src/components/local-form-component.js index 9402ee8e0..088c91001 100644 --- a/src/components/local-form-component.js +++ b/src/components/local-form-component.js @@ -15,7 +15,7 @@ class LocalForm extends React.Component { this.dispatch = (action) => { if (typeof action === 'function') { - return action(this.store.dispatch, this.store.getState); + return action(this.dispatch, this.store.getState); } return this.store.dispatch(action);