From 6b431cef0c58c5927eddd4596da1bc63d86d3c6e Mon Sep 17 00:00:00 2001 From: Prakshitha Malla Date: Sat, 30 May 2026 00:10:42 +0530 Subject: [PATCH] fix: updated raw loops to use unique deterministic placeholder skeleton keys #38 --- components/console/repository-list.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/components/console/repository-list.tsx b/components/console/repository-list.tsx index efea7ee..1838209 100644 --- a/components/console/repository-list.tsx +++ b/components/console/repository-list.tsx @@ -232,7 +232,9 @@ export function RepositoryList({ {loading && ( view === "grid" ? (
- {Array.from({ length: 6 }).map((_, i) => )} + {Array.from({ length: 6 }).map((_, i) => ( + + ))}
) : (
@@ -247,7 +249,9 @@ export function RepositoryList({ - {Array.from({ length: 6 }).map((_, i) => )} + {Array.from({ length: 6 }).map((_, i) => ( + + ))}
@@ -289,4 +293,4 @@ export function RepositoryList({ )} ); -} +} \ No newline at end of file