change file limit to 250 mb 1000 bytes was for testin
This commit is contained in:
parent
0cde29e56d
commit
09e403facf
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@ export const getCanUploadMedia = createSelector(
|
|||
export const getreachedTotalSizeLimit = createSelector(
|
||||
getTotalSize,
|
||||
(totalSize) => {
|
||||
// if (totalSize > 250000000) return true;
|
||||
if (totalSize > 1000) return true;
|
||||
if (totalSize > 250000000) return true;
|
||||
//if (totalSize > 1000) return true;
|
||||
return false;
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue