diff --git a/apps/client/src/features/viewers/timeline/timeline-markers/TimelineMarkers.tsx b/apps/client/src/features/viewers/timeline/timeline-markers/TimelineMarkers.tsx index f6ba72c85..2b91b3107 100644 --- a/apps/client/src/features/viewers/timeline/timeline-markers/TimelineMarkers.tsx +++ b/apps/client/src/features/viewers/timeline/timeline-markers/TimelineMarkers.tsx @@ -14,8 +14,8 @@ export default function TimelineMarkers(props: TimelineMarkersProps) { return (
- {elements.map((tag) => { - return {tag}; + {elements.map((tag, index) => { + return {tag}; })}
);