summaryrefslogtreecommitdiff
path: root/src/components/ConnectionTable.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ConnectionTable.tsx')
-rw-r--r--src/components/ConnectionTable.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ConnectionTable.tsx b/src/components/ConnectionTable.tsx
index e0c1c7f..6696fcd 100644
--- a/src/components/ConnectionTable.tsx
+++ b/src/components/ConnectionTable.tsx
@@ -104,9 +104,9 @@ function Table({ data }) {
{...cell.getCellProps()}
className={cx(
s.td,
- i % 2 == 0 ? s.odd : false,
- j == 0 || (j >= 5 && j < 10) ? s.center : true,
- j == 2 || j == 4 ? s.break : true
+ i % 2 === 0 ? s.odd : false,
+ j == 0 || (j >= 5 && j < 10) ? s.center : true
+ // j ==1 ? s.break : true
)}
>
{renderCell(cell, locale)}