Skip to content

Commit

Permalink
use real file size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal-Delange committed Dec 18, 2023
1 parent 5374afc commit 6dc96fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const handle = {
i18n: ['common', 'navigation', 'cases', ...casesI18n] satisfies Namespace,
};

const MAX_FILE_SIZE_MB = 1;
const MAX_FILE_SIZE_MB = 20;
const MAX_FILE_SIZE = MAX_FILE_SIZE_MB * 1024 * 1024;

export function UploadFile({ caseDetail }: { caseDetail: CaseDetail }) {
Expand Down

0 comments on commit 6dc96fd

Please sign in to comment.