diff --git a/site/files.js b/site/files.js index 13a018d..0d93e76 100644 --- a/site/files.js +++ b/site/files.js @@ -2,10 +2,8 @@ const form = document.getElementById("schematic-form"); const resultContainer = document.getElementById("result-container"); form.onsubmit = async (e) => { e.preventDefault(); - resultContainer.innerHTML = ""; - console.log(e); + resultContainer.innerHTML = "
Uploading and extracting contents...
"; const data = new FormData(form); - console.log(data); try { const response = await fetch("/extracts", { method: "POST",