From 6a69b69994d1b4cda89b61922233de88498878ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=BCtt?= Date: Thu, 14 Nov 2024 09:55:18 +0100 Subject: [PATCH] Fix typo --- azul-core/src/xml.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azul-core/src/xml.rs b/azul-core/src/xml.rs index a08cd6ef..20a6ac6f 100644 --- a/azul-core/src/xml.rs +++ b/azul-core/src/xml.rs @@ -1430,7 +1430,7 @@ pub fn compile_component( component_args: &ComponentArguments, component_function_body: &str, ) -> String { - let name = &normalize_casing(&name); + let component_name = &normalize_casing(&component_name); let function_args = format_component_args(&component_args.args); let component_function_body = component_function_body .lines()