Skip to content

Commit

Permalink
Fix: missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
forabi committed Jun 29, 2019
1 parent 2996f26 commit d5fad0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useClickAndDrag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function useClickAndDrag(

const move$ = merge(mouseMove$, touchMove$).pipe(map(mapCoordsToContainer));

const box$: Observable<Rect | null> = dragStart$.pipe(
const box$: rxjs.Observable<Rect | null> = dragStart$.pipe(
tap(() => {
setIsDragging(true);
setHasFinishedDragging(false);
Expand Down

0 comments on commit d5fad0d

Please sign in to comment.