remove extra log

This commit is contained in:
Ninja3047 2022-07-27 17:45:55 -04:00
parent a9e9a93493
commit 4e7b3dfd3b
No known key found for this signature in database

View File

@ -29,7 +29,6 @@ const FileForm = () => {
fr.onload = (e) => {
const { result } = e.target;
if (result instanceof ArrayBuffer) {
console.log("File uploaded");
let data = new Uint8Array(result);
encrypt_array_buffer(data);
}