From ce847db036654c4eb8ddbf3995c194c6cc2d7d8c Mon Sep 17 00:00:00 2001 From: audric Date: Wed, 4 Aug 2021 16:09:03 +1000 Subject: [PATCH] lint --- ts/components/Lightbox.tsx | 5 +++-- ts/components/conversation/Quote.tsx | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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; }, []);