From cc53ce4380d81740c9e5b511fb754c30f7facc92 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Thu, 27 Jun 2024 14:00:46 -0300 Subject: [PATCH] format code --- src/frontend/src/components/dataOutputComponent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/dataOutputComponent/index.tsx b/src/frontend/src/components/dataOutputComponent/index.tsx index 5fe4d3637..cc42be4e3 100644 --- a/src/frontend/src/components/dataOutputComponent/index.tsx +++ b/src/frontend/src/components/dataOutputComponent/index.tsx @@ -14,7 +14,7 @@ function DataOutputComponent({ columnMode?: "intersection" | "union"; }) { // If the rows are not an array of objects, convert them to an array of objects - if(rows.some((row) => typeof row !== "object")) { + if (rows.some((row) => typeof row !== "object")) { rows = rows.map((row) => ({ data: row })); }