Skip to content

Commit

Permalink
Fix: remove isRequired for name prop in landing container
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanCCollins authored Mar 19, 2017
1 parent 97c5574 commit 024748e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/containers/LandingContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ LandingContainer.propTypes = {
isLoading: PropTypes.bool.isRequired,
isShowingModal: PropTypes.bool.isRequired,
fields: PropTypes.object.isRequired, // eslint-disable-line
name: PropTypes.string.isRequired,
name: PropTypes.string,
contributors: PropTypes.arrayOf(
PropTypes.shape({
name: PropTypes.string.isRequired,
Expand Down

0 comments on commit 024748e

Please sign in to comment.