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 })); }