diff --git a/web/src/components/timeline/MotionReviewTimeline.tsx b/web/src/components/timeline/MotionReviewTimeline.tsx index 81d3d8a3d..450da98ca 100644 --- a/web/src/components/timeline/MotionReviewTimeline.tsx +++ b/web/src/components/timeline/MotionReviewTimeline.tsx @@ -121,7 +121,8 @@ export function MotionReviewTimeline({ ); const segmentMotion = - firstHalfMotionValue.totalMotion > 0 || secondHalfMotionValue.totalMotion > 0; + firstHalfMotionValue.totalMotion > 0 || + secondHalfMotionValue.totalMotion > 0; if (segmentMotion && !overlappingReviewItems) { segments.push(segmentTime); } diff --git a/web/src/components/timeline/MotionSegment.tsx b/web/src/components/timeline/MotionSegment.tsx index a41fe3a81..4bc493c8c 100644 --- a/web/src/components/timeline/MotionSegment.tsx +++ b/web/src/components/timeline/MotionSegment.tsx @@ -237,7 +237,8 @@ export function MotionSegment({ secondHalfSegmentWidth ? "bg-motion_review" : "bg-muted-foreground", - secondHalfSegmentWidth && secondHalfMotionValue.isCalibrating + secondHalfSegmentWidth && + secondHalfMotionValue.isCalibrating ? "bg-motion_review_is_calibrating" : "", )}