diff --git a/packages/svelte/src/internal/shared/warnings.js b/packages/svelte/src/internal/shared/warnings.js index 37269a674e..b8093bbaa8 100644 --- a/packages/svelte/src/internal/shared/warnings.js +++ b/packages/svelte/src/internal/shared/warnings.js @@ -20,7 +20,6 @@ export function dynamic_void_element_content(tag) { /** * The following properties cannot be cloned with `$state.snapshot` — the return value contains the originals: - * * %properties% * @param {string | undefined | null} [properties] */ @@ -28,7 +27,6 @@ export function state_snapshot_uncloneable(properties) { if (DEV) { console.warn(`%c[svelte] state_snapshot_uncloneable\n%c${properties ? `The following properties cannot be cloned with \`$state.snapshot\` — the return value contains the originals: - ${properties}` : "Value cannot be cloned with `$state.snapshot` — the original value was returned"}`, bold, normal); } else {