From b4fb0df9ea2b1a656d37d14492ac2ae77fd89ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Brand=C3=A9ho?= Date: Thu, 16 Feb 2023 07:07:43 +0100 Subject: [PATCH] Update list high-level API (#543) --- pynecone/components/datadisplay/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pynecone/components/datadisplay/list.py b/pynecone/components/datadisplay/list.py index 2fb4eb5bb..b51374524 100644 --- a/pynecone/components/datadisplay/list.py +++ b/pynecone/components/datadisplay/list.py @@ -34,7 +34,7 @@ class List(ChakraComponent): if len(children) == 0: children = [] for item in items or []: - children.append(ListItem.create(*item)) + children.append(ListItem.create(item)) return super().create(*children, **props)