tfrere commited on
Commit
59fb9df
·
1 Parent(s): 1cb025f

revert to 1mo file size limit

Browse files
frontend/src/components/BenchmarkCreateForm.jsx CHANGED
@@ -111,7 +111,7 @@ function BenchmarkCreateForm({ onStartGeneration }) {
111
  }
112
 
113
  // Check file size limit (1MB = 1048576 bytes)
114
- if (file.size > 10485760) {
115
  setUploadStatus({
116
  success: false,
117
  message: "File size exceeds the 10MB limit",
 
111
  }
112
 
113
  // Check file size limit (1MB = 1048576 bytes)
114
+ if (file.size > 1048576) {
115
  setUploadStatus({
116
  success: false,
117
  message: "File size exceeds the 10MB limit",