diff --git a/reflex/components/el/elements/forms.py b/reflex/components/el/elements/forms.py index dce03520b..529a5e884 100644 --- a/reflex/components/el/elements/forms.py +++ b/reflex/components/el/elements/forms.py @@ -182,7 +182,7 @@ class Form(BaseHTML): props["handle_submit_unique_name"] = "" form = super().create(*children, **props) form.handle_submit_unique_name = md5( - str(**form._get_all_hooks()).encode("utf-8") + str(form._get_all_hooks()).encode("utf-8") ).hexdigest() return form