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 9a74d75 commit cde4e25Copy full SHA for cde4e25
apps/frontend/src/components/media/new.uploader.tsx
@@ -85,7 +85,7 @@ export function useUppyUploader(props: {
85
const isVideo = file.type?.startsWith('video/');
86
87
const maxImageSize = 30 * 1024 * 1024; // 30MB
88
- const maxVideoSize = 30 * 1024 * 1024; // 1000 * 1024 * 1024; // 1GB
+ const maxVideoSize = 1000 * 1024 * 1024; // 1GB
89
90
if (isImage && file.size > maxImageSize) {
91
const error = new Error(
0 commit comments