From 3fadd45f11d1d167e07b302df73e790c75809ad1 Mon Sep 17 00:00:00 2001
From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com>
Date: Fri, 15 Dec 2023 17:45:38 -0800
Subject: [PATCH] style: suppress new eslint-plugin-react errors

---
 src/.eslintrc.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/.eslintrc.js b/src/.eslintrc.js
index caa0db5f..1459beb3 100644
--- a/src/.eslintrc.js
+++ b/src/.eslintrc.js
@@ -7,6 +7,10 @@ module.exports = {
         browser: true
     },
     rules: {
+        // BEGIN: these caused trouble after upgrading eslint-plugin-react from 7.20.3 to 7.33.2
+        'react/forbid-prop-types': 'off',
+        'react/no-unknown-property': 'off',
+        // END: these caused trouble after upgrading eslint-plugin-react from 7.20.3 to 7.33.2
         'import/no-mutable-exports': 'error',
         'import/no-commonjs': 'error',
         'import/no-amd': 'error',