Skip to content

Commit

Permalink
fix: Fix prop type for featured guide tile duration
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Nov 28, 2021
1 parent 1c97eb6 commit 65d7f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FeaturedGuideTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const FeaturedGuideTile = ({
FeaturedGuideTile.propTypes = {
guide: PropTypes.shape({
description: PropTypes.string.isRequired,
duration: PropTypes.string.isRequired,
duration: PropTypes.number.isRequired,
icon: PropTypes.element.isRequired,
title: PropTypes.string.isRequired,
url: PropTypes.string.isRequired,
Expand Down

0 comments on commit 65d7f5c

Please sign in to comment.