Merge pull request #1825 from Bilb/lint

lint
pull/1824/head
Audric Ackermann 4 years ago committed by GitHub
commit c1c2f0e046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -211,9 +211,10 @@ export const LightboxObject = ({
const isImageTypeSupported = GoogleChrome.isImageTypeSupported(contentType);
const onDragStart = useCallback((e:any) => {
const onDragStart = useCallback((e: any) => {
e.preventDefault();
return false; }, []);
return false;
}, []);
const playVideo = () => {
if (!videoRef) {

@ -113,7 +113,7 @@ export const QuoteImage = (props: any) => {
const { loading, urlToLoad } = useEncryptedFileFetch(url, contentType);
const srcData = !loading ? urlToLoad : '';
const onDragStart = useCallback((e:any) => {
const onDragStart = useCallback((e: any) => {
e.preventDefault();
return false;
}, []);

Loading…
Cancel
Save