From 11281c509cc05302bf98071b5df4b4344986f181 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 18 Jun 2024 19:48:39 -0300 Subject: [PATCH] removed console.log --- src/frontend/src/components/dataOutputComponent/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/frontend/src/components/dataOutputComponent/index.tsx b/src/frontend/src/components/dataOutputComponent/index.tsx index 131266fa0..9a3b2f66d 100644 --- a/src/frontend/src/components/dataOutputComponent/index.tsx +++ b/src/frontend/src/components/dataOutputComponent/index.tsx @@ -13,9 +13,7 @@ function DataOutputComponent({ rows: any; columnMode?: "intersection" | "union"; }) { - console.log("rows", rows); const columns = extractColumnsFromRows(rows, columnMode); - console.log("columns", columns); const columnDefs = columns.map((col, idx) => ({ ...col,