From 50886675ec336cf189a187f8597d5e9db06526e8 Mon Sep 17 00:00:00 2001 From: nazar-lazarchuk Date: Wed, 26 Jan 2022 19:49:45 +0200 Subject: [PATCH] removed unused `unsibscribe` statement --- .../tutorial/08-stores/01-writable-stores/app-a/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; });