Manas Gupta

Results 11 comments of Manas Gupta

**There is a workaround to make it work on window** ``` if os.name == "nt": import msvcrt else: import terminos ``` That is we can check if the current os...

Check out this [API](https://rapidapi.com/wirefreethought/api/geodb-cities/pricing) for adding this feature

I guess it won't work if you end up sending a pr but another pr was merged after you send a pr then the conflicts will persist.

In case of conflicts in the Readme for contributors list @ron2111 can add this - https://github.com/marketplace/actions/auto-add-contributors

I have used it and seen it used many times and the UI generated is cool too

Hey, I am an app developer, Can I work on this issue?

Try using `GraphingTooltip` instead of `CustomToolTip`

One way I can think of is to try using [Wrapping React](https://reflex.dev/docs/wrapping-react/overview/#wrapping-react).

```python3 import reflex as rx from rxconfig import config class State(rx.State): """The app state.""" @rx.var def test_id(self) -> str: return self.router.page.params.get("id", "No Test ID") @rx.page(route="/test/[id]") def test(): """A page that...

Looks like the current implementation aligns with the documentation. By default, the [type](https://recharts.org/en-US/api/XAxis#type) property of XAxis is considered `category`, rather than a `numeric` value. Consequently, the graph was interpreting the...