fix: file size limit to 15M (#431)
This commit is contained in:
parent
23ef2262bd
commit
bb3cc6bba6
3 changed files with 5 additions and 5 deletions
|
|
@ -30,7 +30,7 @@ const ACCEPTS = [
|
|||
'.csv',
|
||||
]
|
||||
|
||||
const MAX_SIZE = 10 * 1024 * 1024
|
||||
const MAX_SIZE = 15 * 1024 * 1024
|
||||
const BATCH_COUNT = 5
|
||||
|
||||
const FileUploader = ({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue