diff --git a/packages/@react-aria/combobox/src/useComboBox.ts b/packages/@react-aria/combobox/src/useComboBox.ts index ba165958ced..d2ab7f1bf4e 100644 --- a/packages/@react-aria/combobox/src/useComboBox.ts +++ b/packages/@react-aria/combobox/src/useComboBox.ts @@ -119,6 +119,7 @@ export function useComboBox(props: AriaCo keyboardDelegate: delegate, disallowTypeAhead: true, disallowEmptySelection: true, + autoFocus: 'first', shouldFocusWrap, ref: inputRef, // Prevent item scroll behavior from being applied here, should be handled in the user's Popover + ListBox component diff --git a/packages/@react-stately/combobox/src/useComboBoxState.ts b/packages/@react-stately/combobox/src/useComboBoxState.ts index 54838afb8d9..dbea05fcbb9 100644 --- a/packages/@react-stately/combobox/src/useComboBoxState.ts +++ b/packages/@react-stately/combobox/src/useComboBoxState.ts @@ -310,7 +310,8 @@ export function useComboBoxState