From 63a3285b2345b9d338d57112aedaaf4484c09fcb Mon Sep 17 00:00:00 2001 From: "sp.wack" <83104063+amanape@users.noreply.github.com> Date: Sun, 23 Jun 2024 09:32:37 +0300 Subject: [PATCH] Disable eslint rule that throws useeffect warning (#2600) --- frontend/.eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/.eslintrc b/frontend/.eslintrc index 8569f120fb..5929f51a22 100644 --- a/frontend/.eslintrc +++ b/frontend/.eslintrc @@ -55,7 +55,8 @@ "some": [ "nesting", "id" ] } }], - "react/no-array-index-key": "off" + "react/no-array-index-key": "off", + "react-hooks/exhaustive-deps": "off" },"parserOptions": { "project": ["**/tsconfig.json"] }