diff --git a/src/app/(dashboard)/explorer/page.tsx b/src/app/(dashboard)/explorer/page.tsx index f92869b9d2..007d55fcc9 100644 --- a/src/app/(dashboard)/explorer/page.tsx +++ b/src/app/(dashboard)/explorer/page.tsx @@ -136,7 +136,10 @@ async function YourGuilds() { function YourGuildsSkeleton() { return (
- {Array(3).fill()} + {Array.from({ length: 3 }, (_, i) => ( + // biome-ignore lint/suspicious/noArrayIndexKey: + + ))}
); }