Skip to content

Commit

Permalink
Fix ProjectCard.propTypes.children
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasjunior authored Sep 18, 2018
1 parent 419b8d8 commit b90993c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ProjectCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ export default ProjectCard;
ProjectCard.propTypes = {
title: PropTypes.string.isRequired,
link: PropTypes.string.isRequired,
children: PropTypes.object.isRequired,
children: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired,
bg: PropTypes.string.isRequired,
};

0 comments on commit b90993c

Please sign in to comment.