Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
lublagg committed Sep 27, 2023
1 parent a11b636 commit 9f844e4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const Options: React.FC<IOptions> = (props) => {
const newSelection: any = {[optionKey]: newArray};
if (e.currentTarget.checked) {
newSelection[optionKey].push(e.target.value);
console.log(newSelection);
// If user selects "Age", "Gender", or "Race", auto-select "Total Farmers" as well
if (optionKey === "farmerDemographics" && !newArray.includes("Total Farmers")) {
newSelection.farmDemographics.push("Total Farmers");
Expand Down

0 comments on commit 9f844e4

Please sign in to comment.