Skip to content

Commit

Permalink
remove dbgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Jan 31, 2025
1 parent 0562599 commit c694dc1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/src/web_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use tauri_specta::Event;
use crate::auth::{AuthStore, AuthenticationInvalid};

pub fn make_url(pathname: impl AsRef<str>) -> String {
let server_url_base = dotenvy_macro::dotenv!("NEXT_PUBLIC_WEB_URL");
let server_url_base = dotenvy_macro::dotenv!("VITE_SERVER_URL");
format!("{server_url_base}{}", pathname.as_ref())
}

Expand Down
2 changes: 0 additions & 2 deletions crates/export/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ where
let mut first_frame = None;

while let Some((frame, frame_number)) = rx_image_data.recv().await {
dbg!(frame_number);
(self.on_progress)(frame_count);

if frame_count == 0 {
Expand All @@ -220,7 +219,6 @@ where
/ f64::from(fps)) as i64;
frame.set_pts(Some(pts));
let audio_frame = &frame;
dbg!(audio_frame.pts());
Some(frame)
} else {
None
Expand Down

1 comment on commit c694dc1

@vercel
Copy link

@vercel vercel bot commented on c694dc1 Jan 31, 2025

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.