Skip to content

Commit

Permalink
fix(useDropzone): avoid circular reference (#3683)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopf committed Dec 27, 2023
1 parent 5719bfb commit 15a38e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/useDropZone/index.ts
Expand Up @@ -5,8 +5,7 @@ import { ref, shallowRef, unref } from 'vue-demi'
import type { MaybeRefOrGetter } from '@vueuse/shared'
import { isClient, notNullish } from '@vueuse/shared'

// eslint-disable-next-line no-restricted-imports
import { useEventListener } from '@vueuse/core'
import { useEventListener } from '../useEventListener'

export interface UseDropZoneReturn {
files: Ref<File[] | null>
Expand Down

0 comments on commit 15a38e1

Please sign in to comment.