diff --git a/reflex/components/el/elements/media.py b/reflex/components/el/elements/media.py index 0aa16ccb3..6148660fc 100644 --- a/reflex/components/el/elements/media.py +++ b/reflex/components/el/elements/media.py @@ -83,7 +83,6 @@ class Img(BaseHTML): def create(cls, *children, **props) -> Component: if len(children) == 0: comp = super().create(*children, **props) - print(props) else: return super().create(src=children[0], **props)