From c37286f8451b27e4c0d6ade31776fe5268628226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= <1671644+arrufat@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:11:47 +0900 Subject: [PATCH] forms: casting Co-authored-by: Karl Seguin --- src/browser/forms.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/forms.zig b/src/browser/forms.zig index 2619763f..9f380f8c 100644 --- a/src/browser/forms.zig +++ b/src/browser/forms.zig @@ -196,7 +196,7 @@ fn collectFormFields( }); }, .textarea => { - const textarea = el.is(Element.Html.TextArea) orelse continue; + const textarea = el.as(Element.Html.TextArea); try fields.append(arena, .{ .node = node,