diff --git a/src/containers/Connections/index.tsx b/src/containers/Connections/index.tsx index 075ca85..4603205 100644 --- a/src/containers/Connections/index.tsx +++ b/src/containers/Connections/index.tsx @@ -241,18 +241,18 @@ export default function Connections() {
{ - rows.map((row, i) => { + rows.map(row => { prepareRow(row) return ( -
+
{ - row.cells.map((cell, j) => { + row.cells.map(cell => { const classname = classnames( 'connections-block', { center: shouldCenter.has(cell.column.id), completed: row.original.completed } ) return ( -
+
{ renderCell(cell)}
)