Skip to content

Commit

Permalink
Remove unnecessary comments in ConnectionTable
Browse files Browse the repository at this point in the history
  • Loading branch information
haishanh committed Sep 18, 2023
1 parent 27a80fa commit db4952e
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions src/components/ConnectionTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ function Table({ data }: { data: any }) {
onSortingChange: setSorting,
getCoreRowModel: getCoreRowModel(),
getSortedRowModel: getSortedRowModel(),
// debugTable: true,
});
// className={s.tr}
return (
<table className={s.table}>
<thead>
Expand Down Expand Up @@ -111,21 +109,7 @@ function Table({ data }: { data: any }) {
<tr key={row.id}>
{row.getVisibleCells().map((cell) => {
return (
<td
key={cell.id}
className={cx(
'xxxx',
// s.td,
// i % 2 === 0 ? s.odd : false,
// connCtx.hasProcessPath
// ? j >= 2 && j <= 5
// ? s.du
// : false
// : j >= 1 && j <= 4
// ? s.du
// : false
)}
>
<td key={cell.id}>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</td>
);
Expand Down

1 comment on commit db4952e

@vercel
Copy link

@vercel vercel bot commented on db4952e Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

yacd – ./

yacd-git-master-haishan.vercel.app
yacd-haishan.vercel.app
yacd-gray.vercel.app

Please sign in to comment.