From 809e4f4746b3ad5871a39bba4ab68465c4df67ab Mon Sep 17 00:00:00 2001 From: Pritish Budhiraja <1805317@kiit.ac.in> Date: Mon, 8 Apr 2024 12:53:17 +0530 Subject: [PATCH 1/2] fix: remove warnings --- .eslintrc.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index ed774b8f3..03d2d4d82 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,7 +10,6 @@ }, "plugins": ["react-hooks"], "rules": { - "react-hooks/rules-of-hooks": "error", - "react-hooks/exhaustive-deps": "warn" + "react-hooks/rules-of-hooks": "error" } } From 1ac89347723c8e9d06f8eccb2a5144ee32df80a9 Mon Sep 17 00:00:00 2001 From: Pritish Budhiraja <1805317@kiit.ac.in> Date: Mon, 8 Apr 2024 13:06:13 +0530 Subject: [PATCH 2/2] fix: node-version upgrade --- .github/workflows/CI-Action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-Action.yml b/.github/workflows/CI-Action.yml index 3dc938931..34e9d7799 100644 --- a/.github/workflows/CI-Action.yml +++ b/.github/workflows/CI-Action.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: "14" + node-version: "20" - name: Install dependencies run: npm install