Skip to content

Commit

Permalink
Merge pull request #14 from yeojz/hotfix/flow-check
Browse files Browse the repository at this point in the history
flow check
  • Loading branch information
yeojz committed May 14, 2017
2 parents ce2dc15 + 79e0b1e commit c6cfe3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ test:
override:
- yarn test
- yarn run lint
- yarn run flow
deployment:
coverage:
branch: [master, /^hotfix\/.*$/, /^feature\/.*$/]
Expand Down
2 changes: 1 addition & 1 deletion src/redux/withReduxState.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type Props = {
onReset: Function;
};

const withReduxState = (reducerKey: string = 'forms') => (Component: RComponent): RComponent => {
const withReduxState = (reducerKey: string = 'forms') => (Component: ReactClass<*>): ReactClass<*> => {

class ComponentWithReduxState extends React.Component {
props: Props
Expand Down

0 comments on commit c6cfe3e

Please sign in to comment.