From 812f38dafe8a96a6174b96e46b99f57dd6733c9c Mon Sep 17 00:00:00 2001 From: hippoz Date: Wed, 15 Sep 2021 16:20:25 +0300 Subject: [PATCH] fix: undo faulty change to `App` component --- bfrontend/src/Components/Main/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfrontend/src/Components/Main/App.js b/bfrontend/src/Components/Main/App.js index 28350c1..24b9ac5 100644 --- a/bfrontend/src/Components/Main/App.js +++ b/bfrontend/src/Components/Main/App.js @@ -19,7 +19,7 @@ function App({ user, fullscreenMessage }) { Authenticator.login(); }, []); - if (!user && !hasError) { + if (user === null && !hasError) { return (

Loading...