diff --git a/chatdesk-ui/db/storage/files.ts b/chatdesk-ui/db/storage/files.ts index c299976..33cdbc1 100644 --- a/chatdesk-ui/db/storage/files.ts +++ b/chatdesk-ui/db/storage/files.ts @@ -15,7 +15,7 @@ export const uploadFile = async ( if (file.size > SIZE_LIMIT) { throw new Error( - `File must be less than ${Math.floor(SIZE_LIMIT / 1000000)}MB` + `File must be less than ${Math.floor(SIZE_LIMIT / 104857600)}MB` ) }