Skip to content

Commit f650c8a

Browse files
committed
fallback error
1 parent 62d7fd8 commit f650c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/modules/IDE/components/ErrorModal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import prettyBytes from 'pretty-bytes';
66
import { getConfig } from '../../../utils/getConfig';
77
import { parseNumber } from '../../../utils/parseStringToType';
88

9-
const uploadLimit = parseNumber(getConfig('UPLOAD_LIMIT'));
9+
const uploadLimit = parseNumber(getConfig('UPLOAD_LIMIT')) || 250000000;
1010
const uploadLimitText = prettyBytes(uploadLimit);
1111

1212
const ErrorModal = ({ type, service, closeModal }) => {

0 commit comments

Comments
 (0)