diff --git a/src/app/ProjectSchedulePane.tsx b/src/app/ProjectSchedulePane.tsx index d46f46cb..5bb054ec 100644 --- a/src/app/ProjectSchedulePane.tsx +++ b/src/app/ProjectSchedulePane.tsx @@ -8,7 +8,6 @@ import type { ProjectDialogueLibrary } from "../dialogues/project-dialogues"; import { formatControlEffectValue, getControlTargetRefKey } from "../controls/control-surface"; import { ProjectSequencesPanel } from "./ProjectSequencesPanel"; import { - formatProjectScheduleDaySelection, getProjectScheduleTimelineSegments, type ProjectScheduler, type ProjectScheduleRoutine @@ -312,23 +311,6 @@ function getRoutineColorValue(routine: ProjectScheduleRoutine): string | null { } } -function groupTargetOptions( - targetOptions: ProjectScheduleTargetOption[] -): Array<{ groupLabel: string; options: ProjectScheduleTargetOption[] }> { - const grouped = new Map(); - - for (const option of targetOptions) { - const entries = grouped.get(option.groupLabel) ?? []; - entries.push(option); - grouped.set(option.groupLabel, entries); - } - - return [...grouped.entries()].map(([groupLabel, options]) => ({ - groupLabel, - options - })); -} - export function ProjectSequencerPane({ mode, onSetMode, @@ -670,26 +652,6 @@ export function ProjectSequencerPane({ } /> -