Skip to content

Commit ce8bc27

Browse files
committed
Update dependencies and package versions for most packages.
1 parent 18a4bd5 commit ce8bc27

File tree

4 files changed

+372
-374
lines changed

4 files changed

+372
-374
lines changed

app/routes/settings+/profile.photo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ export async function action({ request }: Route.ActionArgs) {
6868

6969
const formData = await parseFormData(
7070
request,
71-
async (file: FileUpload) => uploadHandler(file),
7271
{ maxFileSize: MAX_SIZE },
72+
async (file: FileUpload) => uploadHandler(file),
7373
)
7474
const submission = await parseWithZod(formData, {
7575
schema: PhotoFormSchema.transform(async (data) => {

app/routes/users+/$username_+/__note-editor.server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export async function action({ request }: ActionFunctionArgs) {
2929

3030
const formData = await parseFormData(
3131
request,
32-
async (file: FileUpload) => uploadHandler(file),
3332
{ maxFileSize: MAX_UPLOAD_SIZE },
33+
async (file: FileUpload) => uploadHandler(file),
3434
)
3535

3636
const submission = await parseWithZod(formData, {

0 commit comments

Comments
 (0)