Remove function from troubleshooting

This commit is contained in:
amcmanu3 2024-06-19 13:31:36 -04:00
parent 5340670ceb
commit 95437c3e64

View File

@ -136,10 +136,4 @@ function getToggleMain(event) {
document.getElementById("files-tree").classList.toggle("d-block");
document.getElementById(path + "span").classList.toggle("tree-caret-down");
document.getElementById(path + "span").classList.toggle("tree-caret");
}
function printFormData() {
let myForm = document.getElementById("import-upload");
let formObj = new FormData(myForm);
console.log(Object.fromEntries(formObj));
}