Synphonyte / leptos-use

Collection of essential Leptos utilities inspired by React-Use / VueUse / SolidJS-USE
https://leptos-use.rs/
Apache License 2.0
309 stars 67 forks source link

derive Clone for UseEventSourceError #110

Closed littlebenlittle closed 3 months ago

littlebenlittle commented 3 months ago

Start fix for #109

maccesch commented 3 months ago

Looking good! Thanks for your work!

maccesch commented 3 months ago

Closing this as it's not strictly necessary and there hasn't been any activity in a while

mdecimus commented 4 weeks ago

Any chances this PR will be merged?

I am having the same issue not being able to call get on the error signal.

maccesch commented 4 weeks ago

This is due to the fact, that we can't really know if the error is clone or not. It is a bit unfortunate but you can use .with() instead.

mdecimus commented 4 weeks ago

This is due to the fact, that we can't really know if the error is clone or not. It is a bit unfortunate but you can use .with() instead.

That's fine, I'll use with instead.

Thanks for the quick reply!