diericx / climbing_notebook

A tool to help climbers with their training
https://climbingnotebook.com
Other
22 stars 1 forks source link

Errors not being set correctly on form actions #13

Closed diericx closed 1 year ago

diericx commented 1 year ago

A lot of form actions weren't fully updated after migrating to super forms. They return known errors like so

return fail(401, { message: e.detail, form })

But should be done like so

 return setError(form, null, 'An exercise with that name already exists')