You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the api for providing initial form state is great. It lets us pass in the whole form state at once. I need to be able to update the entire form state in a similar manner, something like formState.setFields((oldFieldValues) => ({...oldFieldValues, ...newFieldValues}))
formState.setField isn't practical because it is a large form and I don't want to manage fields individually for this use case.
thanks!
The text was updated successfully, but these errors were encountered:
the api for providing initial form state is great. It lets us pass in the whole form state at once. I need to be able to update the entire form state in a similar manner, something like
formState.setFields((oldFieldValues) => ({...oldFieldValues, ...newFieldValues}))
formState.setField isn't practical because it is a large form and I don't want to manage fields individually for this use case.
thanks!
The text was updated successfully, but these errors were encountered: