Skip to content

Commit

Permalink
webapp/overview: misc cleanup for console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Dec 30, 2024
1 parent 39241d2 commit df6de53
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions webapp/src/reports/OverviewReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export function OverviewReport() {
loading: true,
});
let response = await loadingTracker(setLoading, () => fetchAgg(request));
console.log(response.rows);
setData("protocols", {
loading: false,
data: response.rows,
Expand All @@ -127,7 +126,6 @@ export function OverviewReport() {
loading: true,
});
let response = await loadingTracker(setLoading, () => fetchAgg(request));
console.log(response.rows);
setData("tlsSni", {
loading: false,
data: response.rows,
Expand All @@ -146,7 +144,6 @@ export function OverviewReport() {
loading: true,
});
let response = await loadingTracker(setLoading, () => fetchAgg(request));
console.log(response.rows);
setData("quicSni", {
loading: false,
data: response.rows,
Expand All @@ -157,8 +154,6 @@ export function OverviewReport() {
}

async function fetchEventsHistogram(q: string) {
console.log("Fetching histogram");

initChart();

let eventTypes = await API.getEventTypes({
Expand Down

0 comments on commit df6de53

Please sign in to comment.