Fix rustfmt formatting in server and kiosk

This commit is contained in:
2026-08-09 19:54:00 -04:00
parent 77bc93e70f
commit f6487f00e3
11 changed files with 57 additions and 40 deletions
+5 -1
View File
@@ -30,7 +30,11 @@ fn resolve_server_url(state: &AppState, headers: &HeaderMap) -> String {
}
if !state.config.public_api_url.is_empty() {
return state.config.public_api_url.trim_end_matches('/').to_string();
return state
.config
.public_api_url
.trim_end_matches('/')
.to_string();
}
"http://localhost:8080".to_string()