Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dwu359 committed Oct 29, 2023
1 parent 1b3da91 commit 4d38a89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: matrix.node-version
node-version: 20.x

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Dashboard = () => {
useEffect(() => {
if (router.isReady && !user) {
router.replace({ pathname: "/login" });
console.log("remove me2");
console.log("remove me3");
}
}, [user, router.isReady]);
if (!isSignedIn(user)) {
Expand Down

0 comments on commit 4d38a89

Please sign in to comment.