We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62d7fd8 commit f650c8aCopy full SHA for f650c8a
client/modules/IDE/components/ErrorModal.jsx
@@ -6,7 +6,7 @@ import prettyBytes from 'pretty-bytes';
6
import { getConfig } from '../../../utils/getConfig';
7
import { parseNumber } from '../../../utils/parseStringToType';
8
9
-const uploadLimit = parseNumber(getConfig('UPLOAD_LIMIT'));
+const uploadLimit = parseNumber(getConfig('UPLOAD_LIMIT')) || 250000000;
10
const uploadLimitText = prettyBytes(uploadLimit);
11
12
const ErrorModal = ({ type, service, closeModal }) => {
0 commit comments