diff --git a/ts/components/Lightbox.tsx b/ts/components/Lightbox.tsx index 542c436d5..e69b28143 100644 --- a/ts/components/Lightbox.tsx +++ b/ts/components/Lightbox.tsx @@ -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) { diff --git a/ts/components/conversation/Quote.tsx b/ts/components/conversation/Quote.tsx index 1fc4b4c66..d1a80743f 100644 --- a/ts/components/conversation/Quote.tsx +++ b/ts/components/conversation/Quote.tsx @@ -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; }, []);