change file limit to 250 mb 1000 bytes was for testin

This commit is contained in:
Cassie Tarakajian 2019-09-25 18:01:50 -04:00
parent 0cde29e56d
commit 09e403facf
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ export const getCanUploadMedia = createSelector(
export const getreachedTotalSizeLimit = createSelector( export const getreachedTotalSizeLimit = createSelector(
getTotalSize, getTotalSize,
(totalSize) => { (totalSize) => {
// if (totalSize > 250000000) return true; if (totalSize > 250000000) return true;
if (totalSize > 1000) return true; //if (totalSize > 1000) return true;
return false; return false;
} }
); );