Skip to content

Commit

Permalink
chore: remove debug println
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonVirgo committed Aug 4, 2024
1 parent 9ad6193 commit 8c3a42f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/api/dashboard/vote_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ async fn vote_data(state: Data<AppState>, path: web::Path<String>, query: web::Q
let next_page_url = format!("/api/dashboard/votes/{}?take={}&skip={}", thread_id, take, skip + take);
let prev_page_url = format!("/api/dashboard/votes/{}?take={}&skip={}", thread_id, take, skip - take);

println!("{} {}", next_page_url, prev_page_url);

HttpResponse::Ok().body(
html! {
div."w-full h-full flex flex-col p-4" id="vote-wrapper" {
Expand Down

0 comments on commit 8c3a42f

Please sign in to comment.