Skip to content

Commit

Permalink
[TS migration][g11] Fixed type of drag and drop
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-rebelo committed Mar 12, 2024
1 parent 453a287 commit bdd24df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DragAndDrop/Provider/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type DragAndDropProviderProps = {
isDisabled?: boolean;

/** Indicate that users are dragging file or not */
setIsDraggingOver?: (value: boolean) => void;
setIsDraggingOver: (value: boolean) => void;
};

type SetOnDropHandlerCallback = (event: DragEvent) => void;
Expand Down

0 comments on commit bdd24df

Please sign in to comment.