Skip to content

Commit

Permalink
Remove printf debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jbothma committed Aug 24, 2023
1 parent 7cf4378 commit fd7045f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions assets/js/components/ChartSourceController/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ class ChartSourceController extends React.Component {
barTypes: this.props.barTypes
};
const sphere = document.getElementById('sphere-slug').value;
console.log(type, inYearEnabled, sphere, departmentName);

if (type == "expenditurePhase" && inYearEnabled && sphere == "national")
this.fetchActualExpenditureUrls(departmentName);
Expand Down Expand Up @@ -93,7 +92,6 @@ class ChartSourceController extends React.Component {
}

fetchActualExpenditureUrls(departmentName) {
console.log(departmentName);
let url = `../../actual-expenditure/?department_name=${encodeURI(departmentName)}`;
fetchWrapper(url)
.then((response) => {
Expand Down

0 comments on commit fd7045f

Please sign in to comment.