diff --git a/README.md b/README.md index 7c191aaa2a..42bea52782 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,7 @@ -# [Uppy](https://uppy.io) +# [Uppy](https://uppy.io) [![uppy on npm](https://img.shields.io/npm/v/uppy.svg?style=flat-square)](https://www.npmjs.com/package/uppy) Uppy logo: a smiling puppy above a pink upwards arrow - - -| | | | | -|-|-|-|-| -| Tests | CI status for Uppy tests | CI status for Companion tests | CI status for browser tests | -| Deploys | CI status for CDN deployment | CI status for Companion deployment | CI status for website deployment | - Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly with any application. It’s fast, has a comprehensible API and lets you worry about more important problems than building a file uploader. * **Fetch** files from local disk, remote URLs, Google Drive, Dropbox, Box, Instagram or snap and record selfies with a camera @@ -23,6 +16,11 @@ Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly wit Uppy is being developed by the folks at [Transloadit](https://transloadit.com), a versatile API to handle any file in your app. + + + +
TestsCI status for Uppy testsCI status for Companion testsCI status for browser tests
DeploysCI status for CDN deploymentCI status for Companion deploymentCI status for website deployment
+ ## Example Code used in the above example: diff --git a/private/dev/Dashboard.js b/private/dev/Dashboard.js index ed6933b9c5..d01b26907b 100644 --- a/private/dev/Dashboard.js +++ b/private/dev/Dashboard.js @@ -122,7 +122,7 @@ export default () => { uppyDashboard.use(AwsS3, { companionUrl: COMPANION_URL, limit: 6 }) break case 's3-multipart': - uppyDashboard.use(AwsS3Multipart, { companionUrl: COMPANION_URL, limit: 6 }) + uppyDashboard.use(AwsS3Multipart, { companionUrl: COMPANION_URL }) break case 'xhr': uppyDashboard.use(XHRUpload, { endpoint: XHR_ENDPOINT, limit: 6, bundle: true })