Skip to content

Commit

Permalink
fix(auto-gen-crumb): fix disableLinks and hiddenCrumbs prop types
Browse files Browse the repository at this point in the history
  • Loading branch information
sbardian committed Nov 19, 2019
1 parent 67c7b33 commit 3421a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/auto-gen-crumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ AutoGenCrumb.propTypes = {
}),
).isRequired,
crumbLabel: Proptypes.string,
disableLinks: Proptypes.arrayOf,
hiddenCrumbs: Proptypes.arrayOf,
disableLinks: Proptypes.arrayOf(Proptypes.string),
hiddenCrumbs: Proptypes.arrayOf(Proptypes.string),
}

export default AutoGenCrumb

0 comments on commit 3421a40

Please sign in to comment.