diff --git a/site/content/examples/21-miscellaneous/02-immutable-data/ImmutableTodo.svelte b/site/content/examples/21-miscellaneous/02-immutable-data/ImmutableTodo.svelte index fdf1ca7ce0..1b4d138304 100644 --- a/site/content/examples/21-miscellaneous/02-immutable-data/ImmutableTodo.svelte +++ b/site/content/examples/21-miscellaneous/02-immutable-data/ImmutableTodo.svelte @@ -5,7 +5,6 @@ import flash from './flash.js'; export let todo; - export let toggle; let div; diff --git a/site/content/examples/21-miscellaneous/02-immutable-data/MutableTodo.svelte b/site/content/examples/21-miscellaneous/02-immutable-data/MutableTodo.svelte index 801a6dcbd3..288b9c6d15 100644 --- a/site/content/examples/21-miscellaneous/02-immutable-data/MutableTodo.svelte +++ b/site/content/examples/21-miscellaneous/02-immutable-data/MutableTodo.svelte @@ -3,7 +3,6 @@ import flash from './flash.js'; export let todo; - export let toggle; let div;