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 67b5c09 commit 3b9349eCopy full SHA for 3b9349e
packages/svelte/src/internal/client/dom/blocks/boundary.js
@@ -102,17 +102,16 @@ export class Boundary {
102
this.#props = props;
103
this.#children = children;
104
105
+ this.#hydrate_open = hydrate_node;
106
+
107
this.parent = /** @type {Effect} */ (active_effect).b;
108
109
this.#effect = block(() => {
110
var boundary_effect = /** @type {Effect} */ (active_effect);
111
boundary_effect.b = this;
112
- this.#hydrate_open = hydrate_node;
-
113
// @ts-ignore We re-use the effect's fn property to avoid allocation of an additional field
114
boundary_effect.fn = (/** @type {unknown} */ input) => {
115
- var error = input;
116
this.error(input);
117
};
118
0 commit comments