Skip to content

Commit 1087f99

Browse files
committed
cleanup
1 parent e3cff9b commit 1087f99

File tree

1 file changed

+2
-1
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+2
-1
lines changed

packages/svelte/src/internal/client/reactivity/props.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from '../runtime.js';
2121
import { safe_equals } from './equality.js';
2222
import * as e from '../errors.js';
23-
import { BRANCH_EFFECT, DESTROYED, LEGACY_DERIVED_PROP, ROOT_EFFECT } from '../constants.js';
23+
import { BRANCH_EFFECT, LEGACY_DERIVED_PROP, ROOT_EFFECT } from '../constants.js';
2424
import { proxy } from '../proxy.js';
2525
import { teardown } from './effects.js';
2626

@@ -369,6 +369,7 @@ export function prop(props, key, flags, fallback) {
369369
was_from_child = true;
370370
return child_value;
371371
}
372+
372373
was_from_child = false;
373374
return (inner_current_value.v = parent_value);
374375
})

0 commit comments

Comments
 (0)