Behavior of form.reset and isDefaultValue
Here is my problem: I have a form with default values which will auto-submit every few seconds in the background. I only want it to auto-submit if there are actually changes to the values. Usually you need a combination of
isDirty and isDefaultValue for this because if a user adds a character and deletes it again from one of the inputs we will see that isDirty becomes true and stays true but with isDefaultValue we can check if it differs from the default value. However after submission, if we get some data back from the backend (could be exactly the data we just submitted) and do a form.reset(value, { keepDefaultValues: true }); we get the effect that the form now has been resetted to this value and that isDirty is set to false but sadly isDefaultValue stays false. So now if a user adds and deletes a character from an input again the form is dirty and isDefaultValue is false and I have no way to tell anymore that the data did in fact not change without resorting to saving it in some additional state.What I would like is for the
isDefaultValue to flip to true, if we call form.reset(value, { keepDefaultValues: true }); , even if the value might not be the very first defaultValue on render. Alternatively, is there another workaround with the tanstack form APIs?