Refactor: Implement smooth moderation queue

This commit is contained in:
gpt-engineer-app[bot]
2025-10-10 19:20:50 +00:00
parent cd8f770807
commit c62935818a
5 changed files with 201 additions and 75 deletions

View File

@@ -8,7 +8,7 @@ export function QueueSkeleton({ count = 5 }: QueueSkeletonProps) {
return (
<div className="flex flex-col gap-6">
{Array.from({ length: count }).map((_, i) => (
<QueueItemSkeleton key={i} />
<QueueItemSkeleton key={i} index={i} />
))}
</div>
);