Skip to content

Commit

Permalink
set user initial state to true
Browse files Browse the repository at this point in the history
  • Loading branch information
arthursvpb committed Sep 3, 2022
1 parent 5170377 commit a0d73aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ export const App = () => {
return (
<Page user={user}>
<Routes>
<Route exact path="/auth" element={<Auth />} />

<Route exact path="/" element={<Dashboard />} />
<Route exact path="/auth" element={<Auth />} />
<Route exact path="/patients" element={<Patients />} />
<Route exact path="/sessions" element={<Sessions />} />
<Route path="*" element={<Navigate to="/" />} />
Expand Down

0 comments on commit a0d73aa

Please sign in to comment.