diff --git a/apps/client/src/features/rundown/event-editor/composite/EventEditorTimes.tsx b/apps/client/src/features/rundown/event-editor/composite/EventEditorTimes.tsx index c68319486..182ef166a 100644 --- a/apps/client/src/features/rundown/event-editor/composite/EventEditorTimes.tsx +++ b/apps/client/src/features/rundown/event-editor/composite/EventEditorTimes.tsx @@ -29,6 +29,7 @@ interface EventEditorTimesProps { type HandledActions = 'countToEnd' | 'timerType' | 'endAction' | 'timeWarning' | 'timeDanger'; +export default memo(EventEditorTimes); function EventEditorTimes(props: EventEditorTimesProps) { const { eventId, @@ -153,34 +154,31 @@ function EventEditorTimes(props: EventEditorTimesProps) { -
- {/* TODO: rearrange this grid */} -
-
- Warning Time - -
-
- Danger Time - +
+
+ Warning Time + +
+
+ Danger Time + +
); } - -export default memo(EventEditorTimes);