Skip to content

Commit e2bd45d

Browse files
committed
fix: add missing key prop to list items in BackgroundJobsSidebar component
1 parent 28b36e5 commit e2bd45d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/BackgroundJobsSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function BackgroundJobsSidebar({
4646
) : (
4747
<ul aria-label="Background jobs" className="grid gap-2">
4848
{jobs.map((job) => (
49-
<li>
49+
<li key={job.id}>
5050
<BackgroundJobItem
5151
key={job.id}
5252
job={job}

0 commit comments

Comments
 (0)