generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87f8060
commit c99a06f
Showing
5 changed files
with
37 additions
and
14 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
import { Outlet, Navigate } from 'react-router-dom'; | ||
import { useAuth } from '../api/useAuth'; | ||
|
||
const ProtectedRoutes = ({ user }) => { | ||
return user ? <Outlet /> : <Navigate to="/login" />; // Redirect to login if not authenticated | ||
const ProtectedRoutes = ({}) => { | ||
const { user } = useAuth(); | ||
const isAuthenticated = user || localStorage.getItem('user'); | ||
return isAuthenticated ? <Outlet /> : <Navigate to="/login" />; // Redirect to login if not authenticated | ||
}; | ||
export default ProtectedRoutes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters