From 0e58f6f3149457b59ef709122fedd1600fd72537 Mon Sep 17 00:00:00 2001 From: ezequielnick <107352853+ezequielnick@users.noreply.github.com> Date: Wed, 29 Oct 2025 19:48:31 +0800 Subject: [PATCH] fix: remove unused index parameter --- src/renderer/src/components/connections/connection-table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/components/connections/connection-table.tsx b/src/renderer/src/components/connections/connection-table.tsx index c76746b..1e4aa4a 100644 --- a/src/renderer/src/components/connections/connection-table.tsx +++ b/src/renderer/src/components/connections/connection-table.tsx @@ -402,7 +402,7 @@ const ConnectionTable: React.FC = ({ - {sortedConnections.map((connection, index) => ( + {sortedConnections.map((connection) => (