We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd623ec commit 49bfb9bCopy full SHA for 49bfb9b
Site/src/routes/(main)/place/[id=asset]/[name]/settings/+page.server.ts
@@ -177,11 +177,11 @@ actions.data = async e => {
177
178
const { file } = form.data
179
form.data.file = undefined as unknown as File
180
- if (file.size > 50e6)
+ if (file.size > 100e6)
181
return formError(
182
form,
183
["file"],
184
- ["File must be less than 50MB in size"]
+ ["File must be less than 100MB in size"]
185
)
186
187
await Bun.write(`../data/places/${id}`, file)
0 commit comments