Skip to content

Commit

Permalink
fixed code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimZvf committed Sep 3, 2023
1 parent c238fa3 commit 92eb075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-base/src/useAutocomplete/useAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export function useAutocomplete(props) {
? false
: !option || option.disabled || option.getAttribute('aria-disabled') === 'true';

if ((option && option.hasAttribute('tabindex')) && !nextFocusDisabled) {
if (option && option.hasAttribute('tabindex') && !nextFocusDisabled) {
// The next option is available
return nextFocus;
}
Expand Down

0 comments on commit 92eb075

Please sign in to comment.