From 038d54d3690142324534f85f9f3d02c72e25991e Mon Sep 17 00:00:00 2001 From: Babak F Date: Sat, 24 Apr 2021 02:56:39 -0700 Subject: [PATCH] Switch red and orange order. --- .../tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte | 4 ++-- .../tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte index 1c4a6f081a..02315fa091 100644 --- a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte +++ b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-a/App.svelte @@ -4,8 +4,8 @@ let things = [ { id: 1, color: '#3B82F6' }, { id: 2, color: '#10B981' }, - { id: 3, color: '#EF4444' }, - { id: 4, color: '#EAB308' }, + { id: 3, color: '#EAB308' }, + { id: 4, color: '#EF4444' }, ]; function handleClick() { diff --git a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte index 6165bc8981..3a974d33c0 100644 --- a/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte +++ b/site/content/tutorial/04-logic/05-keyed-each-blocks/app-b/App.svelte @@ -4,8 +4,8 @@ let things = [ { id: 1, color: '#3B82F6' }, { id: 2, color: '#10B981' }, - { id: 3, color: '#EF4444' }, - { id: 4, color: '#EAB308' }, + { id: 3, color: '#EAB308' }, + { id: 4, color: '#EF4444' }, ]; function handleClick() {