From 2a9f9d7bb053e1e3971509bb46796aad20605f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=B6ller?= Date: Tue, 29 Jun 2021 17:54:06 +0200 Subject: [PATCH] Remove unused toggle prop from example (#5124) --- .../21-miscellaneous/02-immutable-data/ImmutableTodo.svelte | 1 - .../21-miscellaneous/02-immutable-data/MutableTodo.svelte | 1 - 2 files changed, 2 deletions(-) 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 a2be0eab0b..2a62cf7021 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 d656914f04..a4d37c54fe 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;