Chore(lint): fix missing prop validations

This commit is contained in:
Berkeley Martinez
2016-09-02 22:09:21 -07:00
parent 8443c2f75a
commit a3836bcd8a
10 changed files with 24 additions and 15 deletions

View File

@@ -44,8 +44,9 @@ export class ToolPanel extends PureComponent {
isSimple: PropTypes.bool,
isFrontEnd: PropTypes.bool,
isSubmitting: PropTypes.bool,
toggleHelpChat: PropTypes.func,
openBugModal: PropTypes.func
toggleHelpChat: PropTypes.func.isRequired,
openBugModal: PropTypes.func.isRequired,
submitChallenge: PropTypes.func.isRequired
};
renderSubmitButton(isSignedIn, submitChallenge) {