fix: remove unused index parameter

This commit is contained in:
ezequielnick 2025-10-29 19:48:31 +08:00
parent 80b59fc9de
commit 0e58f6f314

View File

@ -402,7 +402,7 @@ const ConnectionTable: React.FC<Props> = ({
</tr>
</thead>
<tbody>
{sortedConnections.map((connection, index) => (
{sortedConnections.map((connection) => (
<tr
key={connection.id}
className="border-b border-divider hover:bg-content2 cursor-pointer transition-colors h-12"