skeleton for timeline

This commit is contained in:
Josh Hawkins 2024-04-04 15:48:02 -05:00
parent cd1cf0188b
commit 10efb80be2

View File

@ -870,6 +870,7 @@ function MotionReview({
</div> </div>
</div> </div>
<div className="w-[55px] md:w-[100px] overflow-y-auto no-scrollbar"> <div className="w-[55px] md:w-[100px] overflow-y-auto no-scrollbar">
{motionData ? (
<MotionReviewTimeline <MotionReviewTimeline
segmentDuration={segmentDuration} segmentDuration={segmentDuration}
timestampSpread={15} timestampSpread={15}
@ -892,6 +893,9 @@ function MotionReview({
}} }}
dense={isMobile} dense={isMobile}
/> />
) : (
<Skeleton className="rounded-2xl size-full" />
)}
</div> </div>
<VideoControls <VideoControls