Race Conditions
A common pitfall with async validation is to ensure the value hasn't changed during async validation. Fortunately, every validation result from Strickland includes the value
that was validated as a result prop, making these race conditions possible to detect and guard against.
Let's take a look at handling this race condition in application code:
Last updated