Skip to content

Commit

Permalink
removes console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
eireland committed Jan 29, 2024
1 parent bacc058 commit cc2f503
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/attribute-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const AttributesSelector = () => {
const toggleAttributeSelect = (e: React.MouseEvent<HTMLDivElement>) => {
const selectedAttrName = e.currentTarget.textContent;
const selectedAttr = attributeList.find(a => a.name === selectedAttrName);
console.log("selectedAttr", selectedAttr, selectedAttrName);
const filters = selectedAttrsAndFiltersForFrequency.filters;
setState(draft => {
const draftAttrNames = draft.frequencies[selectedFrequency].attrs.map(a => {return a.name;});
Expand All @@ -69,7 +68,6 @@ export const AttributesSelector = () => {
}
}
}
console.log("draft.frequencies[selectedFrequency].attrs", draft.frequencies[selectedFrequency].attrs);
});
};

Expand Down

0 comments on commit cc2f503

Please sign in to comment.