Fix <Language showName /> prop type (#5265)

There isn‘t a `boolean` prop type, so this was throwing an error when Netlify built the site.
master
Jed Fox 2018-10-14 08:03:35 -04:00 committed by GitHub
parent c7093cb3e4
commit b61fec6091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ const Language = ({ name, showName, image, variants }) => (
Language.propTypes = {
name: PropTypes.string,
showName: PropTypes.boolean,
showName: PropTypes.bool,
image: PropTypes.string,
variants: PropTypes.array
};