Skip to content

Commit

Permalink
fix(selection-list): remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagobrez committed Aug 25, 2023
1 parent acfc614 commit d25179b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/SelectionList/BaseSelectionList.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ function BaseSelectionList({
const shouldShowSelectAll = Boolean(onSelectAll);
const activeElement = useActiveElement();

console.log('activeElement', activeElement);

/**
* Iterates through the sections and items inside each section, and builds 3 arrays along the way:
* - `allOptions`: Contains all the items in the list, flattened, regardless of section
Expand Down Expand Up @@ -192,8 +190,6 @@ function BaseSelectionList({
};

const selectFocusedOption = () => {
console.log('ENTER');

const focusedOption = flattenedSections.allOptions[focusedIndex];

if (!focusedOption || focusedOption.isDisabled) {
Expand Down

0 comments on commit d25179b

Please sign in to comment.