diff --git a/packages/@react-aria/select/docs/useSelect.mdx b/packages/@react-aria/select/docs/useSelect.mdx index 78607b90c92..a9a3758116a 100644 --- a/packages/@react-aria/select/docs/useSelect.mdx +++ b/packages/@react-aria/select/docs/useSelect.mdx @@ -65,7 +65,6 @@ select components that can be styled as needed without compromising on high qual the first or last item accordingly * Typeahead to allow selecting options by typing text, even without opening the listbox * Browser autofill integration via a hidden native ` // non tabbable with tabIndex={-1}. - // - // In mobile browsers, there are next/previous buttons above the software keyboard for navigating - // between fields in a form. These only support native form inputs that are tabbable. In order to - // support those, an additional hidden input is used to marshall focus to the button. It is tabbable - // except when the button is focused, so that shift tab works properly to go to the actual previous - // input in the form. Using the element for this so that browser @@ -138,7 +120,6 @@ export function HiddenSelect(props: HiddenSelectProps) { if (state.collection.size <= 300) { return (
-