diff --git a/app/src/protyle/breadcrumb/index.ts b/app/src/protyle/breadcrumb/index.ts index b3455ca9a..f69deaa45 100644 --- a/app/src/protyle/breadcrumb/index.ts +++ b/app/src/protyle/breadcrumb/index.ts @@ -256,7 +256,6 @@ export class Breadcrumb { uploadMenu.querySelector("input").addEventListener("change", (event: InputEvent & { target: HTMLInputElement }) => { - console.log(event.target.files.length) if (event.target.files.length === 0) { return; } diff --git a/app/src/protyle/upload/index.ts b/app/src/protyle/upload/index.ts index 4f75250ac..896c0cd50 100644 --- a/app/src/protyle/upload/index.ts +++ b/app/src/protyle/upload/index.ts @@ -252,7 +252,6 @@ export const uploadFiles = (protyle: IProtyle, files: FileList | DataTransferIte protyle.upload.isUploading = true; xhr.onreadystatechange = () => { - console.log(xhr.readyState) if (xhr.readyState === XMLHttpRequest.DONE) { protyle.upload.isUploading = false; if (!document.body.contains(protyle.element)) {