From eddda2f005867706c19957222f087f8504c5e44a Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 4 Feb 2026 17:31:55 +0000 Subject: [PATCH] Fix reference to poll submission completion --- rmo/water.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmo/water.go b/rmo/water.go index 425a0489..5ec39836 100644 --- a/rmo/water.go +++ b/rmo/water.go @@ -182,7 +182,7 @@ func postWater(w http.ResponseWriter, r *http.Request) { } } tx.Commit(ctx) - http.Redirect(w, r, fmt.Sprintf("/pool-submit-complete?report=%s", public_id), http.StatusFound) + http.Redirect(w, r, fmt.Sprintf("/submit-complete?report=%s", public_id), http.StatusFound) } func postWaterDistrict(w http.ResponseWriter, r *http.Request) { }