Skip to content

Commit

Permalink
fix: linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchedmob committed Oct 6, 2024
1 parent a228952 commit 1f8ce0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ScheduleGrid/ScheduleGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const snapPointId = 'snap-point';

export function ScheduleGrid({ grid, tracks, sessions }: ScheduleGridProps) {
grid = [
tracks.map((_) => trackHeaderId),
tracks.map(() => trackHeaderId),
...grid,
tracks.map((_, index) => `${snapPointId}-${index}`),
];
Expand Down

0 comments on commit 1f8ce0b

Please sign in to comment.