From 55896d97b8f38cf52dec2ceeb5a33a4d90b30448 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Mon, 21 Nov 2022 09:40:48 -0500 Subject: [PATCH] Clear warning --- router/src/components/form.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/src/components/form.rs b/router/src/components/form.rs index 69c2445cc..6bd5c9312 100644 --- a/router/src/components/form.rs +++ b/router/src/components/form.rs @@ -113,7 +113,7 @@ where if resp.status() == 303 { if let Some(redirect_url) = resp.headers().get("Location") { - navigate(&redirect_url, Default::default()); + _ = navigate(&redirect_url, Default::default()); } } }