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
This leads to problems where the previous value is flashed after a change if I call setState in my onChange function. This happens because the component is re-rendered, and formsy passes the value before change to the Input, leading the input to update it state w/ the previous value. Then the formsy setValue finishes, and the input updates its state again using the updated value.
This leads to problems where the previous value is flashed after a change if I call
setState
in myonChange
function. This happens because the component is re-rendered, and formsy passes the value before change to the Input, leading the input to update it state w/ the previous value. Then the formsysetValue
finishes, and the input updates its state again using the updated value.The text was updated successfully, but these errors were encountered: