Masen Furer
Masen Furer
in the else block, why not ```python return super().create(src=children[0], **props) ```
Fixed via #3307
> If there's any workaround for this, please let me know ```python from reflex.components.component import MemoizationLeaf from reflex.components.base.fragment import Fragment class IntegralFragment(Fragment, MemoizationLeaf): pass ... IntegralFragment.create( rx.tooltip( rx.icon_button( "home", on_click=rx.redirect("/"),...
Okay this actually helped a lot https://github.com/radix-ui/primitives/discussions/1166 Turns out that Reflex's StatefulComponent memoization is not handling ref and prop forwarding, which Radix is depending on. If i change the code...
> what's that workaround doing? The workaround is making it so that child of the tooltip does not get memoized separately. The `IntegralFragment` becomes its own React component with the...
Okay i think we have a workaround here: Set the environment variable `PYTHONUNBUFFERED=1` This will allow the stdout to go directly to the logs.
It seems like this change requires all `ComponentState` subclasses to now pass `mixin=True` in the class definition. Is that right? What is the advantage of that?
what is the difference? i don't see any format specifiers in the string so why does it have to be an f-string?
Fixed in https://github.com/reflex-dev/reflex/pull/3202
We'll keep this one open until we come up with a good solution. I think ultimately i'd like to see bun and node installed via binary wheels from pypi so...