Skip to content

Commit

Permalink
readd key
Browse files Browse the repository at this point in the history
  • Loading branch information
anakaren-rojas committed Dec 27, 2024
1 parent bacaad4 commit 717bd34
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ const SegmentGraph = ({dispatch, graphState}: SegmentProps) => {
aria-describedby={`wholeSegmentGraphAriaDescription-${segmentUniqueId}`}
>
{segments?.map((segment, i) => (
<g aria-describedby={`segment-description-${segmentUniqueId}-${i}`}>
<g
aria-describedby={`segment-description-${segmentUniqueId}-${i}`}
key={`${segmentUniqueId}-${i}`}
>
<MovableLine
key={i}
points={segment}
Expand Down

0 comments on commit 717bd34

Please sign in to comment.