diff --git a/reflex/components/radix/themes/layout/list.py b/reflex/components/radix/themes/layout/list.py index 81b2b7ff2..daf7f9a70 100644 --- a/reflex/components/radix/themes/layout/list.py +++ b/reflex/components/radix/themes/layout/list.py @@ -100,7 +100,7 @@ class UnorderedList(BaseList, Ul): tag = "ul" # The style of the list. - list_style_type: LiteralListStyleTypeOrdered = "disc" + list_style_type: LiteralListStyleTypeUnordered = "disc" @classmethod def create( diff --git a/reflex/components/radix/themes/layout/list.pyi b/reflex/components/radix/themes/layout/list.pyi index 3e9448248..ba38564ec 100644 --- a/reflex/components/radix/themes/layout/list.pyi +++ b/reflex/components/radix/themes/layout/list.pyi @@ -106,7 +106,7 @@ class UnorderedList(BaseList, Ul): def create( # type: ignore cls, *children, - list_style_type: Optional[LiteralListStyleTypeOrdered] = None, + list_style_type: Optional[LiteralListStyleTypeUnordered] = None, items: Optional[Union[Iterable, Union[Iterable, Var[Iterable]]]] = None, access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None, auto_capitalize: Optional[