remove debug statement

This commit is contained in:
philipp 2023-03-04 13:33:01 +01:00
parent 6ea1585d7c
commit ff30d1894a

View File

@ -31,7 +31,6 @@ impl DayWithTrips {
.all(db)
.await
.unwrap();
println!("{:#?}", trips_with_users);
for (trip, users) in trips_with_users {
trips.push(TripWithUser::new(trip, users.unwrap()));