Skip to content

Commit

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

0 comments on commit 4981fdc

Please sign in to comment.