diff --git a/src/components/Sing/SequencerRuler/Presentation.vue b/src/components/Sing/SequencerRuler/Presentation.vue
index f47dd87a7a..1bc3823b93 100644
--- a/src/components/Sing/SequencerRuler/Presentation.vue
+++ b/src/components/Sing/SequencerRuler/Presentation.vue
@@ -8,7 +8,6 @@
>
@@ -125,7 +124,6 @@ import {
getMeasureDuration,
getNoteDuration,
getTimeSignaturePositions,
- ticksToMeasuresBeats,
tickToMeasureNumber,
} from "@/sing/domain";
import { baseXToTick, tickToBaseX } from "@/sing/viewHelper";
@@ -399,19 +397,6 @@ const timeSignatureChangeExists = computed(
() => currentTimeSignature.value.measureNumber === currentMeasure.value,
);
-const contextMenuHeader = computed(() => {
- const measuresBeats = ticksToMeasuresBeats(
- playheadTicks.value,
- props.timeSignatures.map((ts, i) => ({
- ...ts,
- position: tsPositions.value[i],
- })),
- props.tpqn,
- );
-
- return `${String(measuresBeats.measures).padStart(3, "0")}.${measuresBeats.beats.toFixed(2).padStart(5, "0")}`;
-});
-
const showTempoOrTimeSignatureChangeDialog = async (
componentProps: ExtractPropTypes,
) => {