From 4fd5710b9da7cfa565b1127f20ab943430319758 Mon Sep 17 00:00:00 2001 From: Alexander Bentkamp Date: Tue, 20 Dec 2022 16:32:19 +0100 Subject: [PATCH] use correct jsx capitalization --- client/src/components/Welcome.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Welcome.tsx b/client/src/components/Welcome.tsx index d9a4d4d..4167023 100644 --- a/client/src/components/Welcome.tsx +++ b/client/src/components/Welcome.tsx @@ -35,7 +35,7 @@ function Welcome() { if (gameInfo.data) { for (let edge of gameInfo.data.worlds.edges) { svgElements.push( - + ) } for (let id in nodes) { @@ -44,7 +44,7 @@ function Welcome() { svgElements.push( - {id} + {id} )