I keep the receiving an linting warning when using the 'onerror' event on img. Any thoughts on how to resolve this?
Error: Non-interactive elements should not be assigned mouse or keyboard event listeners
jsx:
const handlerErrorNoImage = (event) => {
event.target.src = blankProfile
}
<img src="./myimage" onError={handlerErrorNoImage} alt="" />