From 9d7ba34e04c345dc0e8f519963530499d6f984b5 Mon Sep 17 00:00:00 2001 From: Bram Adams <3282661+bramses@users.noreply.github.com> Date: Mon, 16 Dec 2024 22:51:48 -0500 Subject: [PATCH] refactor: Disable ESLint rules for img element to enhance code quality in CallAndResponse component --- src/components/CallAndResponse.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/CallAndResponse.tsx b/src/components/CallAndResponse.tsx index 0380cab..9b8b54f 100644 --- a/src/components/CallAndResponse.tsx +++ b/src/components/CallAndResponse.tsx @@ -1,3 +1,6 @@ +/* eslint-disable @next/next/no-img-element */ +/* eslint-disable jsx-a11y/img-redundant-alt */ + 'use client'; // import './CallAndResponse.css'; @@ -223,10 +226,9 @@ const CallAndResponse: React.FC = ({ return 'Add as Comment'; }; const [setSubmitting, setSetSubmitting] = useState(false); - return ( -
+