File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import "../App.css";
33import { Button } from "@nextui-org/react" ;
44import UploadPageSliver from "../components/upload-page-sliver" ;
55import { useNavigate } from "react-router-dom" ;
6- import { GPTResponse } from "../types/types" ;
6+ // import { GPTResponse } from "../types/types";
77
88export default function UploadPage ( ) {
99 const [ files , setFiles ] = useState < File [ ] > ( [ ] ) ;
@@ -55,7 +55,8 @@ export default function UploadPage() {
5555 } ;
5656
5757 // Handle the click to trigger file input
58- const handleDivClick = ( event : React . MouseEvent < HTMLDivElement > ) : void => {
58+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
59+ const handleDivClick = ( _event : React . MouseEvent < HTMLDivElement > ) : void => {
5960 const fileInput = document . getElementById (
6061 "dropzone-file"
6162 ) as HTMLInputElement ;
You can’t perform that action at this time.
0 commit comments