Skip to content

Commit

Permalink
Merge pull request #33 from niwox/patch-1
Browse files Browse the repository at this point in the history
fix loadingTime type
  • Loading branch information
cassiozen authored Mar 23, 2017
2 parents 0103151 + 118556b commit dce4255
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions episode1/src/components/ContactsApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ class ContactsApp extends Component {
static propTypes = {
contacts: PropTypes.arrayOf(
PropTypes.shape({
thumbnail: React.PropTypes.string.isRequired,
name: React.PropTypes.string.isRequired,
email: React.PropTypes.string
thumbnail: PropTypes.string.isRequired,
name: PropTypes.string.isRequired,
email: PropTypes.string
})
).isRequired,
loadingTime: PropTypes.number
loadingTime: PropTypes.string
}

handleUserInput = (searchTerm) => {
Expand Down

0 comments on commit dce4255

Please sign in to comment.