From 7a872063aac9bee7ca05c55c6dc007ca83f5df61 Mon Sep 17 00:00:00 2001 From: Hunter Craft <118154470+hunterckx@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:07:03 -0800 Subject: [PATCH] fix: remove `console.log` from `getHeadersTableData` (#256) (#261) --- 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)