Tim Guggenmos
Tim Guggenmos
I am running into this every few weeks... It is limiting composability for me, at least the ease of composability
Oh wow, I didn't even know about `exactOptionalPropertyTypes`! I gave it a try but of course ran into the same thing as you. According to the [docs](https://www.typescriptlang.org/tsconfig/#exactOptionalPropertyTypes) it does prevent...
> Maybe we should make it configurable through environment variables I propose configuration like this to be done with feature flags 🙏🏽
I'd like that too. Sadly having something like this is currently not possible: ```rust #[export_const(X)] const X: i32 = 3; ``` Because you cannot have macros on `const` definitions. However...
Please just ignore if irrelevant, just wanted to leave these findings. Here `||` is problematic, in #15853 `??` is problematic. Both seem to be fixed by using a getter instead...
This issue creates around ~10% of **_GRAY EMPTY SPACE_** on the user's screen. I would love it if someone could pay attention and try to fix this.
When updating past `2.31.0` I get this error with `vite dev` SSR using the provided `fetch` to request some data. ``` CORS error: No 'Access-Control-Allow-Origin' header is present on the...
> CORS error: No 'Access-Control-Allow-Origin' header is present on the requested resource > at universal_fetch (...) I should have mentioned that I have a Traefik Reverse Proxy on a `dev.example.com`...
I've been struggling with correct SafeArea on Android for around a year now. I was happy to see "edge-to-edge" work properly after a recent update. This then caused #8095. I...
Something I have noticed while doing this is that tables with only one column do not work! E.g. ```rust #[derive(Debug, ormx::Table)] #[ormx(table = "users_with_string_id", id = user_id, insertable, deletable)] struct...