Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Mar 12, 2024
1 parent 5f8c5be commit 9df2095
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import styles from './StepItem.module.css'

interface DragDropStepItemProps extends ConnectedStepItemProps {
stepId: StepIdType
clickDrop: () => void
moveStep: (stepId: StepIdType, value: number) => void
findStepIndex: (stepId: StepIdType) => number
orderedStepIds: string[]
Expand All @@ -32,7 +31,7 @@ interface DropType {
}

const DragDropStepItem = (props: DragDropStepItemProps): JSX.Element => {
const { stepId, moveStep, clickDrop, findStepIndex, orderedStepIds } = props
const { stepId, moveStep, findStepIndex, orderedStepIds } = props
const ref = React.useRef<HTMLDivElement>(null)

const [{ isDragging }, drag] = useDrag(
Expand Down

0 comments on commit 9df2095

Please sign in to comment.