Skip to content

Commit

Permalink
fix: eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
buckhalt committed Jan 31, 2024
1 parent cc0015b commit 396126a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/interviewer/behaviours/DragAndDrop/DropTarget.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* eslint-disable @typescript-eslint/no-empty-function */
/* eslint-disable react/no-find-dom-node, react/jsx-props-no-spreading */
/* eslint-disable react/no-find-dom-node */

import React, { Component } from 'react';
import { findDOMNode } from 'react-dom';
Expand Down Expand Up @@ -90,9 +89,9 @@ const dropTarget = (WrappedComponent) => {
DropTarget.defaultProps = {
meta: () => ({}),
accepts: () => false,
onDrop: () => {},
onDrag: () => {},
onDragEnd: () => {},
onDrop: () => ({}),
onDrag: () => ({}),
onDragEnd: () => ({}),
};

return DropTarget;
Expand Down

0 comments on commit 396126a

Please sign in to comment.