Thomas Brandého
Thomas Brandého
> Debug: Could not get installation_id or project_hash: 1234[redacted]1234, None This message appear because the telemetry can not get the `project_hash` when running `--backend-only`. The only consequence to this would...
> I also suggest [Sonner](https://sonner.emilkowal.ski/) :) Chance are high that we will go with the one from Radix since this it the lib we use as our core one. Feel...
```python class DebugState(rx.State): enabled: bool def toggle(self, _): self.enabled = not self.enabled @rx.page() def index(): return rx.vstack( rx.switch(on_change=DebugState.toggle), rx.image( src="favicon.ico", style={ "border": rx.cond(DebugState.enabled, "1px solid red", ""), }, ), )...
> I thought that calling the super() class method would set the variable, is there any need to set the is_used variable again? This will only set the is_used in...
> I'm curious, I don't understand how the react component works as I haven't used React before, but If we decide to do `super().is_used = True` is that the same...
> EDIT: although that might also be problematic without using raw `rx.html()`, as `rx.input()` seems to assume a textual input (as it adds classes like `rt-TextFieldInput` etc.). We also have...
closes #1482 #2872
The debounce component we are using `"react-debounce-input"` does not support `defaultValue` so it's not really a bug, just an unsupported feature. (and the lib has no update in last 2...
The rendering inside the callout seems to be based on a grid, so if you put the `callout.icon` after `callout.text` the icon will be moved and display on the 2nd...
> @abulvenz how about symlinking instead of copying? Edit: Not sure how symlinks behave on Windows Symlink doesn't work on Windows, we had this in the beginning for syncing between...