diff --git a/components/console/repository-list.tsx b/components/console/repository-list.tsx
index efea7ee..b0cc425 100644
--- a/components/console/repository-list.tsx
+++ b/components/console/repository-list.tsx
@@ -184,6 +184,7 @@ export function RepositoryList({
setSearch(e.target.value)}
@@ -232,7 +233,9 @@ export function RepositoryList({
{loading && (
view === "grid" ? (
- {Array.from({ length: 6 }).map((_, i) => )}
+ {Array.from({ length: 6 }).map((_, i) => (
+
+ ))}
) : (
@@ -247,7 +250,9 @@ export function RepositoryList({
- {Array.from({ length: 6 }).map((_, i) => )}
+ {Array.from({ length: 6 }).map((_, i) => (
+
+ ))}
@@ -289,4 +294,4 @@ export function RepositoryList({
)}
);
-}
+}
\ No newline at end of file