useEffect to manage "Calories" as an explicit form state field, to keep the form's internal state minimal.useEffect to fieldApi.setValue(), I find myself computing "Calories" once for display in render, and then again in onSubmit for the payload. Is this "double computation" the expected pattern in TanStack Form for non-managed, reactive derived values, or is there a cleaner way to achieve this without useEffect?