Results 28 comments of Luxalpa

It seems this got fixed in 0.2.91? Can this be confirmed? https://github.com/rustwasm/wasm-bindgen/issues/3812 https://github.com/rustwasm/wasm-bindgen/pull/3822

This is a big problem for me too. I get a lot of these messages on app start, and I am very nervous that in some cases it could turn...

I've been hitting this case also. The issue comes from this code: https://github.com/leptos-rs/leptos/blob/a2c7e23d54766e925a32effff0cdf8e27fd803e6/leptos_reactive/src/hydration.rs#L84-L89 Currently, the suspense component runs the childrenfn once via `get_untracked()`, then once the first resource resolves it...

That sounds interesting! Anyway I've been able to fix this bug for my local fork of leptos. I was about to make a pull request, but it would have contained...

I need this one as well.

I would prefer a `wrap_doc_comments` because sometimes I comment out my code temporarily, and then the normal `wrap_comments` can do some very unfortunate wrapping (particularly on macros).

It would be good to have a way to wrap other data structures. Currently trying to encode leptos' RwSignal structs which need calls to `value` and `new` - it would...

I was actually able to just manually implement and defer the encode/decode functions on the respective foreign types and for now the better workaround for handling foreign types like chrono...