Skip to content

Commit

Permalink
clean: deleted unnecessary console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bailonis committed Sep 19, 2023
1 parent 5fb14e0 commit 872509b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ const CapacityGroupSumView: React.FC<WeeklyViewProps> = () => {
});
}

console.log(demandValuesMap);

// Track which Demand.description rows are expanded
const [expandedDemandRows, setExpandedDemandRows] = useState<Record<string, boolean>>({});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const DemandContextProvider: React.FC<React.PropsWithChildren<{}>> = (props) =>
});
const result: DemandProp[] = response.data;
setDemandProps(result);
console.log(demands)// TODO clean
} catch (error) {
console.error('Error fetching demands:', error);
}
Expand Down

0 comments on commit 872509b

Please sign in to comment.