diff --git a/examples/action-form-error-handling/src/app.rs b/examples/action-form-error-handling/src/app.rs index 27ea5fe29d..ab935e4485 100644 --- a/examples/action-form-error-handling/src/app.rs +++ b/examples/action-form-error-handling/src/app.rs @@ -44,9 +44,9 @@ fn HomePage() -> impl IntoView { let do_something_action = Action::::server(); let value = Signal::derive(move || do_something_action.value().get().unwrap_or_else(|| Ok(String::new()))); - // Effect::new_isomorphic(move |_| { - // logging::log!("Got value = {:?}", value.get()); - // }); + Effect::new_isomorphic(move |_| { + logging::log!("Got value = {:?}", value.get()); + }); view! {

"Test the action form!"