From 4ade062cd8cdbe9128aa7a2c8169c17c9d3e874c Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Sun, 4 Jun 2023 20:09:21 -0400 Subject: [PATCH] fix: erroneous reactivity warning at `form.rs:96` (#1142) --- 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 012afce5d..e66fc8a55 100644 --- a/router/src/components/form.rs +++ b/router/src/components/form.rs @@ -93,7 +93,7 @@ where ) .unwrap_throw(); let action = use_resolved_path(cx, move || action.clone()) - .get() + .get_untracked() .unwrap_or_default(); // multipart POST (setting Context-Type breaks the request) if method == "post" && enctype == "multipart/form-data" {