whoops, needed to disable react/no-unescaped-entities

This commit is contained in:
dvelo 2024-08-07 16:41:27 -05:00
parent 5e782acd54
commit 85f865ce3d

@ -1,6 +1,7 @@
{ {
"extends": ["next/core-web-vitals"], "extends": ["next/core-web-vitals"],
"rules": { "rules": {
"react-hooks/exhaustive-deps": "off" "react-hooks/exhaustive-deps": "off",
"react/no-unescaped-entities": "off"
} }
} }