From fee65df1630385cd34dce74dde638c7505cc9727 Mon Sep 17 00:00:00 2001 From: Rupin Khandelwal Date: Sun, 6 Nov 2022 19:31:39 -0300 Subject: [PATCH] clean up --- packages/web/components/templates/library/LibraryList.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/web/components/templates/library/LibraryList.tsx b/packages/web/components/templates/library/LibraryList.tsx index 085d9059c..7a6fde87c 100644 --- a/packages/web/components/templates/library/LibraryList.tsx +++ b/packages/web/components/templates/library/LibraryList.tsx @@ -1,5 +1,5 @@ -import { SetStateAction, useMemo, useState } from 'react' -import Dropzone, { useDropzone } from 'react-dropzone' +import { useMemo, useState } from 'react' +import Dropzone from 'react-dropzone' import { Box } from '../../elements/LayoutPrimitives' import { useGetViewerQuery } from '../../../lib/networking/queries/useGetViewerQuery' import { useGetUserPreferences } from '../../../lib/networking/queries/useGetUserPreferences' @@ -54,7 +54,7 @@ export function LibraryList(props: LibraryListProps): JSX.Element { return ( - + {({ getRootProps, getInputProps, acceptedFiles, fileRejections }) => (

Drag n drop files, or click to select files