Skip to content

Commit

Permalink
test out nested=0
Browse files Browse the repository at this point in the history
  • Loading branch information
adhami3310 committed Feb 5, 2025
1 parent edf1608 commit 56487cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflex/components/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 56487cd

Please sign in to comment.