diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-11-22 14:21:53 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-11-22 14:21:53 -0700 |
commit | 4ae4e874689a71e33cdd7a5799fc0c85c4861367 (patch) | |
tree | d60c5d5f05ce0d0574bc168084e2b014ee999c1b /client/components/router.jsx | |
parent | 3902da1747a3e32db0b67f1162eafd4860b3d27a (diff) | |
download | locchat-4ae4e874689a71e33cdd7a5799fc0c85c4861367.tar.gz locchat-4ae4e874689a71e33cdd7a5799fc0c85c4861367.zip |
adds start for console
Diffstat (limited to 'client/components/router.jsx')
-rw-r--r-- | client/components/router.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/router.jsx b/client/components/router.jsx index 6760bea..59ea7c3 100644 --- a/client/components/router.jsx +++ b/client/components/router.jsx @@ -7,12 +7,12 @@ import { SignUp } from './sign_up/_sign_up'; export const Router = () => { const [settings] = useContext(SettingsContext); - const { JWT } = settings; + const { jwt } = settings; return ( <Routes> <Route path="/" - element={JWT ? <Home /> : <Navigate replace to="signin" />} // no JWT means not logged in + element={jwt ? <Home /> : <Navigate replace to="signin" />} // no jwt means not logged in /> <Route path="signin" element={<SignIn />} /> <Route path="signup" element={<SignUp />} /> |