Skip to content

Commit d78ab67

Browse files
committed
regenerate
1 parent c0ade24 commit d78ab67

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

documentation/docs/98-reference/.generated/client-warnings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ This `reset` function should only be called once. After that, it has no effect
330330
<button onclick={reset}>reset</button>
331331

332332
<svelte:boundary onerror={(e, r) => (reset = r)}>
333-
<!-- contents >
333+
<!-- contents -->
334334

335335
{#snippet failed(e)}
336336
<p>oops! {e.message}</p>

packages/svelte/messages/client-warnings/warnings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ This `reset` function should only be called once. After that, it has no effect
288288
<button onclick={reset}>reset</button>
289289

290290
<svelte:boundary onerror={(e, r) => (reset = r)}>
291-
<!-- contents >
291+
<!-- contents -->
292292

293293
{#snippet failed(e)}
294294
<p>oops! {e.message}</p>

packages/svelte/src/internal/client/errors.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ export function svelte_boundary_reset_onerror() {
434434
const error = new Error(`svelte_boundary_reset_onerror\nA \`<svelte:boundary>\` \`reset\` function cannot be called while an error is still being handled\nhttps://svelte.dev/e/svelte_boundary_reset_onerror`);
435435

436436
error.name = 'Svelte error';
437+
437438
throw error;
438439
} else {
439440
throw new Error(`https://svelte.dev/e/svelte_boundary_reset_onerror`);

0 commit comments

Comments
 (0)