We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a56d3a commit 87da523Copy full SHA for 87da523
src/components/health-check-list.tsx
@@ -87,8 +87,8 @@ export default function HealthCheckList() {
87
</div>
88
89
<div className="flex flex-wrap justify-center gap-4">
90
- {isLoading && range(1, 6).map((item, index) => <HealthCheckListItemSkeleton key={item} />)}
91
- {!isLoading && healthChecks.map((item, index) => <HealthCheckListItem key={item.id} item={item} />)}
+ {isLoading && range(1, 6).map((item) => <HealthCheckListItemSkeleton key={item} />)}
+ {!isLoading && healthChecks.map((item) => <HealthCheckListItem key={item.id} item={item} />)}
92
93
94
{!isLoading && totalPage > 1 && healthChecks.length > 0 && (
0 commit comments