disable console.error lint warnings

This commit is contained in:
nklhrstv 2020-03-17 15:09:40 +02:00
parent 42f461201d
commit 767cfb8eb5

View file

@ -39,6 +39,7 @@ const Video = React.forwardRef(({ className, ...props }, ref) => {
try {
videoRef.current.dispatch(args);
} catch (e) {
// eslint-disable-next-line no-console
console.error(videoRef.current.constructor.manifest.name, e);
}
}