Skip to content

Commit

Permalink
fix: remove console.log from getHeadersTableData (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterckx committed Nov 8, 2024
1 parent 5d72445 commit 928515c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/Table/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ export function getTableStatePagination(
* @returns list of headers.
*/
function getHeadersTableData<T extends RowData>(rows: Row<T>[]): TableData[] {
console.log(rows[0].getAllCells());
return rows[0]
.getAllCells()
.filter((cell) => cell.column.id !== ACCESSOR_KEYS.SELECT)
Expand Down

0 comments on commit 928515c

Please sign in to comment.