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
The form input fields should autofocus so they can be typed in immediately when each form step loads. This will allow the form to be navigable completely by keyboard. This can be achieved by adding the autoFocus prop on the input fields.
This should apply to the slider as well.
If, for some reason, the autoFocus attribute doesn't work on the elements, they can be given refs and a useEffect can be used to set the element's focus with ref.current.focus().
The text was updated successfully, but these errors were encountered:
The form input fields should autofocus so they can be typed in immediately when each form step loads. This will allow the form to be navigable completely by keyboard. This can be achieved by adding the
autoFocus
prop on the input fields.This should apply to the slider as well.
If, for some reason, the
autoFocus
attribute doesn't work on the elements, they can be given refs and auseEffect
can be used to set the element's focus withref.current.focus()
.The text was updated successfully, but these errors were encountered: