Tim Guggenmos

Results 21 comments of Tim Guggenmos

imho this would be my number 1 issue, my first priority, to get this being absolutely awesome!

This workaround works "fine", but it's a hassle, not only finding the video in the first place... https://www.youtube.com/watch?v=JXvKBtTPr64 It should given some vague idea of what is out there and...

Having the same struggle. Thanks @CoDanny got the fix! Would be nice if this issue was documented. Finding this over google was not 100% intuitive. Thank you for the library!...

Hey, i am facing the same issue. I guess the easiest workaround for me would be using a generic service name, and then alias it to a specific name in...

> Can confirm issue still exists in install script. Just ran into it today when setting up a server. Same

Okay, I managed to create a (similar) reproduction. https://svelte.dev/playground/65217d0486a04acf9c5f2c8275fe63b8?version=5.28.2 - It only causes the bug when commenting in+out the observation `{CLS.countP2}` in `App.svelte` - It is NOT fixed by changing...

Might be related to #15829 and #15832.

Hey, - This issue is **breaking reactivity** - A **main feature** of Svelte - With something as common as using a standard TypeScript feature `||` and `??` Could someone please...

I also have a related question: Is what I describe below "allowed"? ```svelte class State { _x = $state("loading...") get_x() { if (this._x === null) { loadDataAsync().then(() => (this._x =...