v0.10.302 #2

Merged
didirus merged 289 commits from feature-clean into beta 2025-07-08 15:00:09 +00:00
Showing only changes of commit d24528f6a6 - Show all commits

View File

@@ -19,7 +19,7 @@ export const useImageUpload = async (file: File, ctx: ImageUploadContext) => {
// Make sure file is less than 1MB
if (file.size > 1024 * 1024) {
throw new Error("File is too large");
throw new Error("File exceeds the 1MiB size limit");
}
const qs = new URLSearchParams();