Skip to content

Commit

Permalink
chore(demo): remove max upload size by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Oct 21, 2023
1 parent ea0657c commit 7b9e25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class AppComponent {
options: UploaderOptions;

constructor() {
this.options = { concurrency: 1, maxUploads: 10, maxFileSize: 10000000 };
this.options = { concurrency: 1, maxUploads: 10 };
this.files = [];
this.uploadInput = new EventEmitter<UploadInput>();
this.humanizeBytes = humanizeBytes;
Expand Down

0 comments on commit 7b9e25c

Please sign in to comment.