From a7485bb14d8a902e6733daad43e07d4a9cd85e90 Mon Sep 17 00:00:00 2001 From: Luke Zhao Date: Mon, 22 Jan 2024 11:57:01 -0700 Subject: [PATCH] fix rendering --- Sources/UIComponent/Components/Layout/Inset/Insets.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/UIComponent/Components/Layout/Inset/Insets.swift b/Sources/UIComponent/Components/Layout/Inset/Insets.swift index 1493087b..ded69bc2 100644 --- a/Sources/UIComponent/Components/Layout/Inset/Insets.swift +++ b/Sources/UIComponent/Components/Layout/Inset/Insets.swift @@ -57,7 +57,7 @@ struct InsetsRenderNode: RenderNode { } /// The content render nodes of this render node. - var contentren: [any RenderNode] { + var children: [any RenderNode] { [content] }