Masen Furer

Results 131 comments of Masen Furer

> looking to the pyright and not sure how to read the issues, what to fix... i would assume it's because the formatter moved important `# type: ignore` comments to...

Is the sqlite database built into the container? Or bind mounted in? Or in a docker volume?

i think rather than having the toast declarative, we would probably implement it as an event that you could return from a backend event handler or in response to an...

There are two problems going on here: 1. the type of `value` in `DebounceInput` is `Var[str]`, and it should be `Var[Any]` so that any underlying API can be used 2....

It looks like you're on the right track. I think inspecting the props in `get_component` and making appropriate adjustments is the right move. As for the theming, take a look...

CTRL-C doesn't work at all with `reflex run --frontend-only` on Windows

@Lendemor idk if you want to take this into your branch (it has a refresh from `origin/main`); or if you just want to take your PR into `main` and then...

Are you keeping any ssh related objects in the State? That pickling error is coming from reflex trying to pickle the state for redis (prod mode)

@kusumdesai check out how we override the size for the radix `Container` component for an example of how this is done.

@Yummy-Yums i think you would want to override the `create` classmethod instead of `__init__`. It's the call to `super.__init__` that's triggering the exception, so if you call that before your...