Skip to content

Commit

Permalink
UPDATED: Fix for error in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
GGalina committed May 15, 2024
1 parent a71ca7c commit 75cd408
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:

- name: Install, lint, build 🔧
run: |
run: |
npm install
npm run lint:js
REACT_APP_FIREBASE_API_KEY=$FIREBASE_API_KEY \
Expand Down
5 changes: 0 additions & 5 deletions src/components/PrivateRoute.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,3 @@ export const PrivateRoute = ({ component: Component, redirectTo = '/' }) => {
const isLoggedIn = useSelector(selectorIsLoggedIn);
return !isLoggedIn ? <Navigate to={redirectTo} /> : Component;
};




///hello try again

0 comments on commit 75cd408

Please sign in to comment.