From 928515cd1507b66a9cd0b4a8b36e32b5084525b6 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Fri, 8 Nov 2024 12:53:35 -0800 Subject: [PATCH] fix: remove `console.log` from `getHeadersTableData` (#256) --- src/components/Table/common/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Table/common/utils.ts b/src/components/Table/common/utils.ts index 0d129533..531cd1c3 100644 --- a/src/components/Table/common/utils.ts +++ b/src/components/Table/common/utils.ts @@ -344,7 +344,6 @@ export function getTableStatePagination( * @returns list of headers. */ function getHeadersTableData(rows: Row[]): TableData[] { - console.log(rows[0].getAllCells()); return rows[0] .getAllCells() .filter((cell) => cell.column.id !== ACCESSOR_KEYS.SELECT)