Skip to content

Commit 418029b

Browse files
committed
Fix for chidren with the same key
1 parent 8140d3a commit 418029b

File tree

1 file changed

+1
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index

1 file changed

+1
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ function ErrorsList({
507507
<TableBody>
508508
{errorGroups.map((errorGroup) => (
509509
<ErrorGroupRow
510-
key={errorGroup.fingerprint}
510+
key={`${errorGroup.taskIdentifier}::${errorGroup.fingerprint}`}
511511
errorGroup={errorGroup}
512512
occurrences={occurrences}
513513
organizationSlug={organizationSlug}

0 commit comments

Comments
 (0)