From 0f68cee4af2d90f58610864a5c4f3ec37c9a08bf Mon Sep 17 00:00:00 2001 From: Kimuchuu <32385601+Kimuchuu@users.noreply.github.com> Date: Thu, 11 May 2023 22:48:05 +0200 Subject: [PATCH] Remove unnecessary multiplication with 1 --- .../tutorial/19-next-steps/01-congratulations/app-a/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/19-next-steps/01-congratulations/app-a/App.svelte b/site/content/tutorial/19-next-steps/01-congratulations/app-a/App.svelte index 9ce2dd648d..54c5ed0741 100644 --- a/site/content/tutorial/19-next-steps/01-congratulations/app-a/App.svelte +++ b/site/content/tutorial/19-next-steps/01-congratulations/app-a/App.svelte @@ -9,7 +9,7 @@ character: characters[i % characters.length], x: Math.random() * 100, y: -20 - Math.random() * 100, - r: 0.1 + Math.random() * 1 + r: 0.1 + Math.random() }; }) .sort((a, b) => a.r - b.r);