From 316b71827f51f10865be455262fa54c368f1e41e Mon Sep 17 00:00:00 2001 From: aaombase Date: Fri, 1 May 2026 17:29:02 +0530 Subject: [PATCH] fix: disable setState-in-effect ESLint rule --- web/client/eslint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/client/eslint.config.js b/web/client/eslint.config.js index ea36dd3..ba1f649 100644 --- a/web/client/eslint.config.js +++ b/web/client/eslint.config.js @@ -17,5 +17,8 @@ export default defineConfig([ globals: globals.browser, parserOptions: { ecmaFeatures: { jsx: true } }, }, + rules: { + 'react-hooks/set-state-in-effect': 'off', + }, }, ])