Browse Source

Remove trailing space

Freddy 6 years ago
parent
commit
ca38eb592f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/@uppy/xhr-upload/src/index.js

+ 1 - 1
packages/@uppy/xhr-upload/src/index.js

@@ -372,7 +372,7 @@ module.exports = class XHRUpload extends Plugin {
       const formData = new FormData()
       files.forEach((file, i) => {
         const opts = this.getOptions(file)
-        
+
         if (file.name) {
           formData.append(opts.fieldName, file.data, file.name)
         } else {