diff --git a/src/app/(dashboard)/explorer/components/InfiniteScrollGuilds.tsx b/src/app/(dashboard)/explorer/components/InfiniteScrollGuilds.tsx index a169b7ef4f..6c565bb219 100644 --- a/src/app/(dashboard)/explorer/components/InfiniteScrollGuilds.tsx +++ b/src/app/(dashboard)/explorer/components/InfiniteScrollGuilds.tsx @@ -58,7 +58,8 @@ export const InfiniteScrollGuilds = () => {
{isLoading - ? Array(PAGE_SIZE).fill() + ? // biome-ignore lint: it's safe to use index as key in this case + [...Array(PAGE_SIZE)].map((_, i) => ) : guilds.map((guild, _i) => ( ))}