From 56487cd4be4cc4ccf17e0deec31a30df1766e257 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Wed, 5 Feb 2025 11:13:01 -0800 Subject: [PATCH] test out nested=0 --- reflex/components/component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/component.py b/reflex/components/component.py index e1a398786..f9e0ceaab 100644 --- a/reflex/components/component.py +++ b/reflex/components/component.py @@ -191,7 +191,7 @@ def satisfies_type_hint(obj: Any, type_hint: Any) -> bool: Returns: Whether the object satisfies the type hint. """ - return types._isinstance(obj, type_hint, nested=1) + return types._isinstance(obj, type_hint, nested=0) class Component(BaseComponent, ABC):