From c9580ffe410382f131bc4fb531a8a30d1a39c6ee Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Sun, 20 Apr 2025 16:09:31 -0500 Subject: [PATCH] react-hooks exhaustive deps off --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index bffb357..09937b6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": "next/core-web-vitals" + "extends": "next/core-web-vitals", + "rules": { + "react-hooks/exhaustive-deps": "off" + } }