Pattern: Use of autofocus
Issue: -
The autoFocus prop should not be used as it can create usability issues. Autofocusing elements can disorient users, especially those using screen readers, by moving focus unexpectedly.
Example of incorrect code:
<input autoFocus />
<button autoFocus="true" />
<textarea autoFocus={true} />
Example of correct code:
<input />
<button />
<textarea />