From 8f8b2090f6aac383fbbb19bb369dc2874da135d7 Mon Sep 17 00:00:00 2001 From: Krao Hasanee Date: Wed, 13 May 2026 11:31:51 -0400 Subject: [PATCH] Raise file upload limit to 50 MB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was 10 MB — blocked zip files at or near that size. Supabase storage supports up to 50 MB; mime-type restrictions were already removed. Co-Authored-By: Claude Sonnet 4.6 --- src/components/FileAttachment.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FileAttachment.jsx b/src/components/FileAttachment.jsx index a166f92..b724d7f 100755 --- a/src/components/FileAttachment.jsx +++ b/src/components/FileAttachment.jsx @@ -1,7 +1,7 @@ import { useState, useRef } from 'react'; const MAX_FILES = 20; -const MAX_SIZE_MB = 10; +const MAX_SIZE_MB = 50; const MAX_SIZE_BYTES = MAX_SIZE_MB * 1024 * 1024; const formatSize = (bytes) => {