When using React Hook Form, while I understand that the "defaultValues" is used to set the form field values on initial form load.
However, let's say there is a dynamic form with dependent fields e.g. if Dropdown Field 1 is set to "ABC", then Field 2 should be set to "ABC 1 Updated" To handle such use cases, is it possible to "watch" Field 1 and based on it's value, update the "defaultValues" with Field 2 then set to "ABC 1 Updated"
or is it not recommended to update "defaultValues" after the initial form load.
I also see "values" in the below documentation, but haven't seen it's usage much. Other option is doing "setValue". Not sure what is the recommended way of handling side effects with a dynamic form with dependent fields.