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 f5a87c0 commit 3a5895bCopy full SHA for 3a5895b
packages/svelte/src/internal/client/runtime.js
@@ -1061,13 +1061,11 @@ export function get(signal) {
1061
1062
if (active_effect !== null && (signal.f & DERIVED) === 0) {
1063
if (active_fork) {
1064
- // console.log('get from fork', (signal.f & DERIVED) !== 0 ? 'derived' : 'source', signal.v);
1065
return active_fork.get(signal);
1066
}
1067
1068
var boundary = (active_effect.f & EFFECT) === 0 && active_effect.b;
1069
if (boundary) {
1070
- // console.log('get from boundary', (signal.f & DERIVED) !== 0 ? 'derived' : 'source', signal.v);
1071
return boundary.get(signal);
1072
1073
0 commit comments