Skip to content

Commit

Permalink
remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmehta committed Oct 20, 2023
1 parent 2fc9f60 commit 7ef8f56
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,15 +416,13 @@ function DataDownloader({ fileStem }) {
selectedAssociationColumns.filter(e => e.aggregation === ag)
);
setSelectedAssociationColumns([...filteredValues.flat(1)]);
console.log(selectedAssociationColumns);
}, [associationAggregationSelect]);

useEffect(() => {
const filteredValues = prioritisationAggregationSelect.map(ag =>
selectedPrioritizationColumns.filter(e => e.aggregation === ag)
);
setSelectedPrioritizationColumns([...filteredValues.flat(1)]);
console.log(selectedAssociationColumns);
}, [prioritisationAggregationSelect]);

return (
Expand Down

0 comments on commit 7ef8f56

Please sign in to comment.