fix: increase DB acquire timeout, add page padding, fix modal scaling on mobile

This commit is contained in:
2026-01-13 21:30:33 -06:00
parent 019cbe76f8
commit bf1bcb736c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ pub async fn create_pool(database_url: &str) -> Result<PgPool, sqlx::Error> {
let pool_options = PgPoolOptions::new()
.max_connections(20)
.acquire_timeout(Duration::from_secs(3));
.acquire_timeout(Duration::from_secs(10));
let mut last_error = None;
let mut delay = initial_delay;