We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703e347 commit fcc7506Copy full SHA for fcc7506
src/components/Timeline.tsx
@@ -202,8 +202,8 @@ export function Timeline({ events }: TimelineProps) {
202
...compositionUpdateBars,
203
...compositionEndBars,
204
];
205
- const maxLevel =
206
- allBars.length > 0 ? Math.max(...allBars.map((b) => b.level)) : 0;
+ // const maxLevel =
+ // allBars.length > 0 ? Math.max(...allBars.map((b) => b.level)) : 0;
207
// Only count levels that actually have bars
208
const activeLevels = Array.from(
209
new Set(allBars.map((bar) => bar.level))
0 commit comments