Skip to content

Commit

Permalink
chore: remove testing println
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonVirgo committed Aug 1, 2024
1 parent 8042059 commit 0f6d227
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/routes/pages/dashboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ async fn dashboard(
title: format!("Dashboard - {}", thread_id).as_str(),
});

let gen_url = |url: &str| {
let res = format!("/api/dashboard/{}/{}", url, thread_id);
println!("{}", res);
res
};
let gen_url = |url: &str| format!("/api/dashboard/{}/{}", url, thread_id);

let get_url_param = |param: &str| format!("/dashboard/{}?d={}", thread_id, param);
let get_htmx_trigger = |trigger: &str| match query.d {
Expand Down

0 comments on commit 0f6d227

Please sign in to comment.