Skip to content

Commit

Permalink
Increase default uploader file size
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Mar 31, 2020
1 parent 5c8d562 commit e9fb1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/builder/src/components/Uploader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Uploader extends Component {

Uploader.defaultProps = {
minSize: 0,
maxSize: 2.5 * 1024 ** 2, // 2.5MB ought to be enough for anybody
maxSize: 255 * 1024 ** 2, // 250MB ought to be enough for anybody
accept: '',
multiple: true,
decodeAs: 'text',
Expand Down

0 comments on commit e9fb1ad

Please sign in to comment.