Skip to content

Commit

Permalink
fix: invalid prop-types. (#1435)
Browse files Browse the repository at this point in the history
  • Loading branch information
tai2 authored and jquense committed Aug 27, 2019
1 parent 7aeb794 commit 61e1a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/addons/dragAndDrop/withDragAndDrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ export default function withDragAndDrop(Calendar) {
onStart: PropTypes.func,
onEnd: PropTypes.func,
onBeginAction: PropTypes.func,
onDropFromOutside: PropTypes.fun,
dragFromOutsideItem: PropTypes.fun,
onDropFromOutside: PropTypes.func,
dragFromOutsideItem: PropTypes.func,
draggableAccessor: accessor,
resizableAccessor: accessor,
dragAndDropAction: PropTypes.object,
Expand Down

0 comments on commit 61e1a1e

Please sign in to comment.