From 8210512eea6b8c97a9d495b25251a4f2a14d808f Mon Sep 17 00:00:00 2001 From: Eric Lewis Date: Fri, 29 Mar 2024 15:03:34 -0400 Subject: [PATCH] fix: missing key --- .../projects/create/RepositoryList/RepositoryList.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx index 3e6adee8..8f7c7811 100644 --- a/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx +++ b/packages/frontend/src/components/projects/create/RepositoryList/RepositoryList.tsx @@ -155,13 +155,13 @@ export const RepositoryList = () => { {Boolean(repositoryDetails.length) ? (
{repositoryDetails.map((repo, index) => ( - <> - +
+ {/* Horizontal line */} {index !== repositoryDetails.length - 1 && (
)} - +
))}
) : (