Masen Furer

Results 189 comments of Masen Furer
trafficstars

The bug is here: https://github.com/pynecone-io/pynecone/blob/5cbf7da952a9ebaa1c987d9e2a0208e159da6e5c/reflex/.templates/web/utils/state.js#L221-L225 In that block, we are mutating the `processEvents` local `state` variable, but then calling `setState` as a function of the current (pre-mutated) `state` known by...

This appears to be an issue when rendering an `rx.markdown` component inside of certain flex containers (`rx.center`,`rx.flex`, maybe others?). Wrapping the `rx.markdown` inside an `rx.box` results in correct rendering. Perhaps...

There are a few issues with reflex markdown: 1) new lines are not recognised (as per above) 2) things like tables have no default formatting, and reflex does not have...

Will have to continue holding off on this one for the time being, because it breaks with the reflex.dev website. Flexdown currently redefines State classes multiple times per doc file,...

Internationalization is important to the team and on the roadmap, but it's not currently a focus for any particular developer. We don't have a particular strategy around this area, but...

i'm able to reproduce this issue with python 3.12 on windows 11; it seems like the hot reload is getting stuck in `npm` trying to install/check packages and hanging

Confirm, this issue is affecting python 3.12 going back to at least 0.3.5; Python 3.11 does not seem to exhibit this problem. As a workaround, use python 3.11 on windows.

The reflex team would love some help on this issue. I think the problem lies in our upstream dependency, `uvicorn`. Uvicorn hot reload by itself seems to work in windows...

The workaround is to set the width in units or to set the 100% width on the `rx.input.root` ```python rx.input.root( rx.input(), width="100%", ) ``` I hear this is one of...