-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Description
After attempting to port a working Svelte 3/LayerCake app (using npm i -S --force LayerCake
) I got the error above (ERR_SVELTE_TOO_MANY_UPDATES
).
To verify the bug wasn't on my side, I moved an arbitrary working LayerCake REPL example to the Svelte 5 Preview REPL and I get the same error:
playground:output:801 Uncaught Error: ERR_SVELTE_TOO_MANY_UPDATES: Maximum update depth exceeded. This can happen when a reactive block or effect repeatedly sets a new value. Svelte limits the number of nested updates to prevent infinite loops.
at infinite_loop_guard (playground:output:801:10)
at flush_queued_effects (playground:output:818:4)
at process_microtask (playground:output:845:3)
Working REPL Example: https://svelte.dev/repl/ad32f9f301484d0cace82272126e9d09?version=3.46.2
Svelte 5 REPL Example (failing)