You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a <svelte:component> whose this doesn't have a value, and it has spread properties, then any updates will fail because the initial spread 'levels' have not been set. REPL
Interestingly, the this.set({ error }) in that example also fails, because always Svelte tries to recalculate spread levels, even if nothing has changed. Should also get fixed.
The text was updated successfully, but these errors were encountered:
Bit of an edge case here...
If you have a
<svelte:component>
whosethis
doesn't have a value, and it has spread properties, then any updates will fail because the initial spread 'levels' have not been set. REPLInterestingly, the
this.set({ error })
in that example also fails, because always Svelte tries to recalculate spread levels, even if nothing has changed. Should also get fixed.The text was updated successfully, but these errors were encountered: