Redirect / to /receipts

This commit is contained in:
2025-03-09 21:09:08 -05:00
parent 7ab2af94ef
commit 20185bdf1f

View File

@@ -88,7 +88,7 @@ impl TryFrom<TransactionRead> for Transaction {
#[rocket::get("/")]
async fn index() -> Redirect {
Redirect::to(rocket::uri!(transaction_list()))
Redirect::to("/receipts")
}
#[rocket::get("/transactions")]