Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy authored Mar 7, 2025
1 parent b15d70a commit 744bb4b
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ function SingleAutocomplete<T extends Item>({
if (clearOnSelect) {
setValue('');
} else {
console.log('onSelect close');
close();
}

Expand Down Expand Up @@ -463,9 +462,6 @@ function SingleAutocomplete<T extends Item>({
}
},
onBlur: e => {
console.log('onBlur', e);
console.log('closeOnBlur', closeOnBlur);
console.log('clearOnBlur', clearOnBlur);
// Should this be e.nativeEvent
e['preventDownshiftDefault'] = true;
inputProps.onBlur?.(e);
Expand Down

0 comments on commit 744bb4b

Please sign in to comment.