I have the following form in my app, which includes text and file inputs:
<form
id="task-new-form"
enctype="multipart/form-data"
autocomplete="off"
hx-post="/ui/tasks"
hx-target="#tasks-table"
hx-swap="innerHTML"
>...</form>
This code worked flawlessly with htmx version 2.0.0-alpha1. However, after updating to htmx version 2.0.0-alpha2, the form submission stopped working. I suspect this issue is related to changes in how multipart/form-data is handled in htmx:
