Skip to content

Commit

Permalink
remove unnecessary bits
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Dec 18, 2024
1 parent 574e746 commit f8d5421
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions apps/desktop/src/routes/editor/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ export function Timeline() {
"timeline",
"segments",
produce((segments) => {
console.log({ splitTime });
segments.splice(i() + 1, 0, {
start: splitTime,
end: segment.end,
Expand Down Expand Up @@ -284,12 +283,6 @@ export function Timeline() {
segment.recordingSegment ?? 0
].display.duration;

console.log(
editorInstance.recordings.segments[
segment.recordingSegment ?? 0
]
);

const availableTimelineDuration =
editorInstance.recordingDuration -
segments().reduce(
Expand Down Expand Up @@ -426,7 +419,6 @@ export function Timeline() {
},
},
});
console.log(zoomSegments);
})
);
});
Expand Down
2 changes: 1 addition & 1 deletion crates/recording/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub mod actor;
mod cursor;
pub mod segmented_actor;

pub use segmented_actor::{spawn_recording_actor, ActorHandle, CompletedRecording, RecordingError};
pub use actor::{spawn_recording_actor, ActorHandle, CompletedRecording, RecordingError};

use cap_media::sources::*;
use serde::{Deserialize, Serialize};
Expand Down

1 comment on commit f8d5421

@vercel
Copy link

@vercel vercel bot commented on f8d5421 Dec 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.