diff --git a/app/layout.tsx b/app/layout.tsx
index 741baa7..5dec434 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -18,7 +18,7 @@ export default function RootLayout({
+
-
+
);
}
diff --git a/components/UploadedList.tsx b/components/UploadedList.tsx
index ef6bea5..eceb3a9 100644
--- a/components/UploadedList.tsx
+++ b/components/UploadedList.tsx
@@ -15,9 +15,10 @@ import { downloadAll } from "@/lib/download";
interface Props {
files: FileState[];
removeFile: (blobURL: string) => void;
+ isSubmit: boolean;
}
-export default function UploadedList({ files, removeFile }: Props) {
+export default function UploadedList({ files, removeFile, isSubmit }: Props) {
return (
<>
removeFile(obj.blobURL)}
+ disabled={isSubmit}
>
@@ -88,6 +90,7 @@ export default function UploadedList({ files, removeFile }: Props) {