From 4d38a89ba681f1c4e7ef09bd6b1113a4dafdd6f4 Mon Sep 17 00:00:00 2001 From: Daniel Wu Date: Sun, 29 Oct 2023 18:24:17 -0400 Subject: [PATCH] workflow --- .github/workflows/node.js.yml | 6 +----- frontend/src/pages/dashboard.tsx | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4a6a8b188..945807502 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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 diff --git a/frontend/src/pages/dashboard.tsx b/frontend/src/pages/dashboard.tsx index 75e94f364..c2ec8e57e 100644 --- a/frontend/src/pages/dashboard.tsx +++ b/frontend/src/pages/dashboard.tsx @@ -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)) {