From fa100224964b0e965b7116e3500a430daf4ad44b Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 29 Mar 2019 15:58:41 +0000 Subject: [PATCH] Add `key` to footer links to appease React --- src/components/views/auth/VectorAuthFooter.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/views/auth/VectorAuthFooter.js b/src/components/views/auth/VectorAuthFooter.js index acc75278..46063133 100644 --- a/src/components/views/auth/VectorAuthFooter.js +++ b/src/components/views/auth/VectorAuthFooter.js @@ -43,7 +43,9 @@ module.exports = React.createClass({ const authFooterLinks = []; for (const linkEntry of links) { authFooterLinks.push( - {linkEntry.text}, + + {linkEntry.text} + , ); }