- {hideToolbar ? null : (
-
- )}
(
showSourceAudioTrack={showSourceAudioTrack}
liveSpanPreviewById={liveZoomPreview.previewSpans}
liveHiddenItemIds={Array.from(liveZoomPreview.hiddenZoomIds)}
+ isLoading={isLoading}
/>
diff --git a/src/components/video-editor/timeline/components/playhead/PlaybackCursor.tsx b/src/components/video-editor/timeline/components/playhead/PlaybackCursor.tsx
index 7ff0c1a9..d780dcfb 100644
--- a/src/components/video-editor/timeline/components/playhead/PlaybackCursor.tsx
+++ b/src/components/video-editor/timeline/components/playhead/PlaybackCursor.tsx
@@ -9,6 +9,7 @@ interface PlaybackCursorProps {
onSeek?: (time: number) => void;
timelineRef: RefObject
;
keyframes?: { id: string; time: number }[];
+ isLoading?: boolean;
}
export default function PlaybackCursor({
@@ -17,6 +18,7 @@ export default function PlaybackCursor({
onSeek,
timelineRef,
keyframes = [],
+ isLoading = false,
}: PlaybackCursorProps) {
const { sidebarWidth, direction, range, valueToPixels, pixelsToValue } = useTimelineContext();
const sideProperty = direction === "rtl" ? "right" : "left";
@@ -100,11 +102,27 @@ export default function PlaybackCursor({