We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f0273 commit 3b395e7Copy full SHA for 3b395e7
packages/svelte/src/internal/client/runtime.js
@@ -960,6 +960,7 @@ export function invalidate_inner_signals(fn) {
960
if ((signal.f & LEGACY_DERIVED_PROP) !== 0) {
961
for (const dep of /** @type {Derived} */ (signal).deps || []) {
962
if ((dep.f & DERIVED) === 0) {
963
+ // Use internal_set instead of set here and below to avoid mutation validation
964
internal_set(dep, dep.v);
965
}
966
0 commit comments