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

@@ -55,7 +55,9 @@ export class Challenge extends PureComponent {
block: PropTypes.string,
isLocked: PropTypes.bool,
isRequired: PropTypes.bool,
isComingSoon: PropTypes.bool,
isCompleted: PropTypes.bool,
isDev: PropTypes.bool,
isHidden: PropTypes.bool,
challenge: PropTypes.object,
updateCurrentChallenge: PropTypes.func.isRequired,

View File

@@ -33,6 +33,7 @@ export class ShowMap extends PureComponent {
superBlocks: PropTypes.array,
height: PropTypes.number,
updateTitle: PropTypes.func.isRequired,
params: PropTypes.object,
fetchChallenges: PropTypes.func.isRequired
};

View File

@@ -49,7 +49,7 @@ export class SuperBlock extends PureComponent {
isOpen: PropTypes.bool,
isHidden: PropTypes.bool,
message: PropTypes.string,
toggleThisPanl: PropTypes.func
toggleThisPanel: PropTypes.func
};
handleSelect(eventKey, e) {