diff --git a/website/src/features/toolboxes/modules/TimerModule.jsx b/website/src/features/toolboxes/modules/TimerModule.jsx index dd55fbd..08db967 100644 --- a/website/src/features/toolboxes/modules/TimerModule.jsx +++ b/website/src/features/toolboxes/modules/TimerModule.jsx @@ -78,7 +78,7 @@ function getCountdownMetaParts(countdown, textContent) { if (countdown.type === "interval") { const startLabel = countdown.startMode === "time" && countdown.startTime ? `${textContent.intervalStartTimeLabel || "Départ"} ${countdown.startTime}` - : textContent.intervalStartNowOption || "Maintenant"; + : `${textContent.intervalStartTimeLabel || "Départ"} ${formatTargetTime(countdown.anchorAt)}`; return [`${textContent.intervalType || "Intervalle"} ${formatDuration(countdown.intervalMs || 0)}`, startLabel]; } return [];