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