From 1aab78f263e1f714cfbf6cc76959f1b8b73915b2 Mon Sep 17 00:00:00 2001 From: Alex Pelan Date: Tue, 21 Aug 2018 19:04:44 -0400 Subject: [PATCH] Add React StrictMode Globally Seems to work, we get some console errors now. Fixes: #1403 --- src/components/Application.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/Application.jsx b/src/components/Application.jsx index 1e8dea72f6..b4fdbc12ac 100644 --- a/src/components/Application.jsx +++ b/src/components/Application.jsx @@ -40,11 +40,13 @@ class Application extends React.Component { } return ( - - - - - + + + + + + + ); } }