You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this library throughout my application. It works beautifully! But I keep getting these ESLint errors when I use it. The two errors I usually get are: ESLint: Declare only one React component per file(react/no-multi-comp) and ESLint: Component definition is missing display name(react/display-name).
And here is an example of the code that is throwing those two errors (this is a function inside one of my components):
constdeleteComment=(id)=>{confirmAlert({customUI: ({ onClose })=>{return(<divclassName={'custom-ui-dialog'}><h1>Confirm Remove Comment</h1><divclassName={'body'}><h3>Are you sure you want to remove this comment?</h3><divclassName={'buttons'}><buttononClick={onClose}>No</button><buttononClick={()=>{deleteCommentAPI(id).then(()=>{onClose();});}}>
Yes
</button></div></div></div>);},closeOnEscape: false,closeOnClickOutside: false,});};
The error shows specifically on this line: customUI: ({ onClose }) => {.
While it does not appear to be causing any real issues, I would love to be able to clean up those errors and get this fixed.
The text was updated successfully, but these errors were encountered:
I am using this library throughout my application. It works beautifully! But I keep getting these ESLint errors when I use it. The two errors I usually get are:
ESLint: Declare only one React component per file(react/no-multi-comp)
andESLint: Component definition is missing display name(react/display-name)
.And here is an example of the code that is throwing those two errors (this is a function inside one of my components):
The error shows specifically on this line:
customUI: ({ onClose }) => {
.While it does not appear to be causing any real issues, I would love to be able to clean up those errors and get this fixed.
The text was updated successfully, but these errors were encountered: