fix: don't generate broken sql

This commit is contained in:
Robert Perce 2026-02-04 13:07:26 -06:00
parent 57177612ec
commit c7130bbcd4
6 changed files with 23 additions and 14 deletions

View file

@ -170,6 +170,7 @@ async fn serve(port: &u32) -> Result<(), anyhow::Error> {
.merge(ics::router())
.nest_service("/static", ServeDir::new("./hashed_static"))
.layer(auth_layer)
.layer(tower_http::trace::TraceLayer::new_for_http())
.with_state(state);
let listener = TcpListener::bind(format!("0.0.0.0:{}", port)).await?;