Skip to content

Commit

Permalink
fix: πŸ› Change proptype validation
Browse files Browse the repository at this point in the history
Changed string proptype to boolean

Closes: #2
  • Loading branch information
Rasula Caldera committed Sep 4, 2019
1 parent 9ff8e0a commit 7c7bc0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VideoBg.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const VideoBg = ({
VideoBg.propTypes = {
wrapperClass: PropTypes.string,
videoClass: PropTypes.string,
loop: PropTypes.string,
loop: PropTypes.bool,
muted: PropTypes.bool,
poster: PropTypes.string,
autoPlay: PropTypes.bool,
Expand Down

0 comments on commit 7c7bc0e

Please sign in to comment.