We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799fff7 commit e9e1966Copy full SHA for e9e1966
1 file changed
frontend/app/page.tsx
@@ -5,7 +5,6 @@ import UploadSuccessAlert from "@/components/UploadSuccessAlert";
5
import QRSection from "@/components/QRSection";
6
import UploadForm from "@/components/UploadForm";
7
import HeroSection from "@/components/HeroSection";
8
-import Head from "next/head";
9
10
export default function Home() {
11
const [file, setFile] = useState<File | null>(null);
@@ -63,6 +62,8 @@ export default function Home() {
63
62
}
64
65
const { url, key, fileId } = await presignRes.json();
+ // needed to show the file name
66
+ console.log(key)
67
if (!url) {
68
setIsUploading(false);
69
console.error("No presigned URL returned");
0 commit comments