Remove append entirely

This commit is contained in:
Reece Browne 2024-12-18 11:47:23 +00:00
parent 678ef85da1
commit bf95ca43dc

View File

@ -75,10 +75,6 @@
// Check if any PDF files are encrypted and handle decryption if necessary
const decryptedFiles = await checkAndDecryptFiles(url, files);
files = decryptedFiles;
// Append decrypted files to formData
decryptedFiles.forEach((file, index) => {
formData.append(`fileInput`, file);
});
}
submitButton.textContent = 'Processing...';