Skip to content

Commit

Permalink
Fix SinglePickerMaterialDialog PropTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
hectahertz committed Dec 17, 2017
1 parent 391ef28 commit 4e5174e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SinglePickerMaterialDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ SinglePickerMaterialDialog.propTypes = {
visible: PropTypes.bool.isRequired,
items: PropTypes.arrayOf(PropTypes.object).isRequired,
selectedItem: PropTypes.shape({
value: PropTypes.object,
label: PropTypes.string,
value: PropTypes.any.isRequired,
label: PropTypes.string.isRequired,
}),
title: PropTypes.string,
titleColor: PropTypes.string,
Expand Down

0 comments on commit 4e5174e

Please sign in to comment.