Don't require login for frontend (#99)

This commit is contained in:
Jonathan Zernik 2020-07-20 20:07:01 -07:00 committed by GitHub
parent 4d84dcb90e
commit 12ec1bbd59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,8 +24,8 @@ export default function App() {
path="/app"
render={() => <Redirect to="/app/dashboard" />}
/>
<PrivateRoute path="/app" component={Layout} />
<PublicRoute path="/login" component={Login} />
<PublicRoute path="/app" component={Layout} />
// <PublicRoute path="/login" component={Login} />
<Route component={Error} />
</Switch>
</HashRouter>