From 944d4d8d191fbabb786da19c44f5ecf92eb0a2ea Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Sun, 13 Apr 2025 23:13:53 +0200 Subject: [PATCH] remove debug comments --- src/station.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/station.rs b/src/station.rs index 8934808..4e002ca 100644 --- a/src/station.rs +++ b/src/station.rs @@ -30,11 +30,6 @@ async fn view( let teams = TeamsAtStationLocation::for_station(&db, &station).await; - //pub(crate) not_yet_here: Vec, - //pub(crate) waiting: Vec<(Team, Rating)>, - //pub(crate) doing: Vec<(Team, Rating)>, - //pub(crate) left: Vec<(Team, Rating)>, - let content = html! { h1 { (format!("Station {}", station.name)) } @if let (Some(lat), Some(lng)) = (station.lat, station.lng) {