All views follow offset mode (#1808)

* chore: remove unused

* fix: studio view follow offset mode
This commit is contained in:
Alex Christoffer Rasmussen
2025-10-07 12:11:14 +02:00
parent fc7ed6bd20
commit 57315595a5
3 changed files with 9 additions and 26 deletions
@@ -20,7 +20,7 @@ import {
useNextFlag,
useOffsetOverview,
useProgressOverview,
useRundownOverview,
useStartTimesOverview,
useTimer,
} from '../../../common/hooks/useSocket';
import { useEntry } from '../../../common/hooks-query/useRundown';
@@ -34,7 +34,7 @@ import { OverUnder, TimeColumn } from './TimeLayout';
import style from './TimeElements.module.scss';
export function StartTimes() {
const { plannedEnd, plannedStart, actualStart, expectedEnd } = useRundownOverview();
const { plannedEnd, plannedStart, actualStart, expectedEnd } = useStartTimesOverview();
const plannedStartText = plannedStart === null ? timerPlaceholder : formatTime(plannedStart);