diff --git a/src/components/FileUpload.tsx b/src/components/FileUpload.tsx index f9f2127e..8ede38b6 100644 --- a/src/components/FileUpload.tsx +++ b/src/components/FileUpload.tsx @@ -179,6 +179,7 @@ export default function FileUpload({ { @@ -189,11 +190,34 @@ export default function FileUpload({ ); +
+ Supports: MP4, MOV, AVI, MKV, WebM, and most video formats +
+ + {fileError && ( +{fileError}
+ )} + + { + const f = e.target.files?.[0]; + if (f) handleFile(f); + }} + /> + +); + // ── Drop zone (inner) ───────────────────────────────── const DropZone = () => ({fileError}
)} + {currentFile && ( ++ Selected: {formatBytes(currentFile.size)} +
+ )} + + { + const f = e.target.files?.[0]; + + if (f) handleFile(f); + }} + /> +