Skip to content

Commit

Permalink
fix syntax bug in Annotation component
Browse files Browse the repository at this point in the history
  • Loading branch information
leopoldjoy committed Nov 8, 2018
1 parent 0488656 commit bd0bfc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Annotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default compose(
onMouseMove: T.func,
onClick: T.func,
// This prop represents how zoom the image is (default: 1)
imageZoomAmount: T.number;
imageZoomAmount: T.number,
// This function is run before the onClick callback is executed (onClick
// is only called if onClickCheckFunc resolve to true or doesn't exist)
onClickCheckFunc: T.func,
Expand Down

0 comments on commit bd0bfc3

Please sign in to comment.