diff --git a/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte b/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte index ee542f789d19..c77563e354f8 100644 --- a/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte +++ b/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte @@ -6,7 +6,7 @@ let count_value; - const unsubscribe = count.subscribe(value => { + count.subscribe(value => { count_value = value; });