Skip to content

Commit e9e1966

Browse files
committed
fix(lint): unwanted variables
1 parent 799fff7 commit e9e1966

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

frontend/app/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import UploadSuccessAlert from "@/components/UploadSuccessAlert";
55
import QRSection from "@/components/QRSection";
66
import UploadForm from "@/components/UploadForm";
77
import HeroSection from "@/components/HeroSection";
8-
import Head from "next/head";
98

109
export default function Home() {
1110
const [file, setFile] = useState<File | null>(null);
@@ -63,6 +62,8 @@ export default function Home() {
6362
}
6463

6564
const { url, key, fileId } = await presignRes.json();
65+
// needed to show the file name
66+
console.log(key)
6667
if (!url) {
6768
setIsUploading(false);
6869
console.error("No presigned URL returned");

0 commit comments

Comments
 (0)