Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Van De Putte committed May 24, 2024
1 parent 468e5bf commit 3d58723
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ember-file-upload/src/system/data-transfer-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const getDataSupport = {};
// this will read a filesystementry into a File object, but ignore the entry if it is a directory
const readEntry = (entry: FileSystemEntry): Promise<File> => {
return new Promise((resolve) => {
console.log('read entry', entry);
if (entry.isFile) {
(entry as FileSystemFileEntry).file((fileEntry: File) => {
resolve(fileEntry);
Expand Down

0 comments on commit 3d58723

Please sign in to comment.