From 85f865ce3d9da25b4ea9d69b036772d11e45dbcb Mon Sep 17 00:00:00 2001 From: dvelo <52332868+DeveloLongScript@users.noreply.github.com> Date: Wed, 7 Aug 2024 16:41:27 -0500 Subject: [PATCH] whoops, needed to disable `react/no-unescaped-entities` --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index f76f0a2..e15dbd6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,7 @@ { "extends": ["next/core-web-vitals"], "rules": { - "react-hooks/exhaustive-deps": "off" + "react-hooks/exhaustive-deps": "off", + "react/no-unescaped-entities": "off" } }