Closed kevinwcyu closed 5 months ago
Use htmlFor to associate labels with input elements.
htmlFor
<Select> components use the inputId instead of id to be associated with the label's htmlFor, whereas<Input> components use the id as expected.
<Select>
inputId
id
<Input>
Removed the aria-label from elements because the associated label should be used instead.
aria-label
Use
htmlFor
to associate labels with input elements.<Select>
components use theinputId
instead ofid
to be associated with the label'shtmlFor
, whereas<Input>
components use theid
as expected.Removed the
aria-label
from elements because the associated label should be used instead.