From cb51eae826a324c6cb3a0d6383b0e2db4c8fe519 Mon Sep 17 00:00:00 2001 From: Dominik Stumpf Date: Tue, 3 Dec 2024 05:35:01 +0100 Subject: [PATCH] fix: address unique index error --- src/app/(dashboard)/explorer/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: + + ))}
); }