Skip to content

Commit 2faa23b

Browse files
committed
chore: fix broken import
1 parent e2f0a79 commit 2faa23b

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

packages/webui/src/client/ui/ClockView/RundownStatusBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ClassNames from 'classnames'
2-
import { DBRundownPlaylist } from '@sofie-automation/corelib/dist/dataModel/RundownPlaylist'
32
import { getDefaultTTimer } from '../../lib/tTimerUtils.js'
43
import { TTimerDisplay } from './TTimerDisplay.js'
4+
import { DBRundownPlaylist } from '@sofie-automation/corelib/src/dataModel/RundownPlaylist/RundownPlaylist.js'
55

66
interface RundownStatusBarProps {
77
playlist?: DBRundownPlaylist

packages/webui/src/client/ui/Prompter/OverUnderTimer.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React from 'react'
22
import classNames from 'classnames'
3-
import { DBRundownPlaylist } from '@sofie-automation/corelib/dist/dataModel/RundownPlaylist'
43
import { RundownUtils } from '../../lib/rundown.js'
54
import { useTiming } from '../RundownView/RundownTiming/withTiming.js'
65
import { getPlaylistTimingDiff } from '../../lib/rundownTiming.js'
6+
import { DBRundownPlaylist } from '@sofie-automation/corelib/src/dataModel/RundownPlaylist/RundownPlaylist.js'
77

88
type OverUnderTimerBaseProps = {
99
/** Optional wrapper around the badge, useful for screens that style via container font-size (eg. director). */
@@ -28,7 +28,9 @@ type OverUnderTimerInnerProps = OverUnderTimerBaseProps & { valueMs: number | un
2828
* Over/under "pill" timer.
2929
* Can either take a direct `valueMs` or a `rundownPlaylist` (requires RundownTiming context).
3030
*/
31-
export function OverUnderTimer(props: Readonly<OverUnderTimerBaseProps & OverUnderTimerValueProps>): JSX.Element | null {
31+
export function OverUnderTimer(
32+
props: Readonly<OverUnderTimerBaseProps & OverUnderTimerValueProps>
33+
): JSX.Element | null {
3234
if ('valueMs' in props) {
3335
return <OverUnderTimerInner {...props} valueMs={props.valueMs} />
3436
} else {

0 commit comments

Comments
 (0)