From cec2f0016a455c6954594f611b23a43a866db1cf Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 30 Aug 2020 15:14:11 -0500 Subject: [PATCH] =?UTF-8?q?refactor(web):=20=E2=99=BB=20add=20key=20to=20c?= =?UTF-8?q?omponents=20of=20SyntaxCloud?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/syntaxCloud/SyntaxCloud.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/syntaxCloud/SyntaxCloud.tsx b/web/src/components/syntaxCloud/SyntaxCloud.tsx index aac8f8f97..38903a715 100644 --- a/web/src/components/syntaxCloud/SyntaxCloud.tsx +++ b/web/src/components/syntaxCloud/SyntaxCloud.tsx @@ -16,7 +16,7 @@ export const SyntaxCloud = (props: Props) =>

{`Syntax${props.syntaxes.length > 1 ? "es" : ""}:`}

)} {props.syntaxes.map((s: Syntax, i: number) => ( - + ))} ) : null;