Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
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 >
|
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",
|