From 04b4d5433cfb88bad53bc33c91a8d38cbb06bf46 Mon Sep 17 00:00:00 2001 From: siepra Date: Tue, 7 Nov 2023 17:08:36 +0100 Subject: [PATCH] fix: lint --- .../mobile/src/screens/ChannelList/ChannelList.screen.tsx | 4 ++-- packages/mobile/src/screens/Notifier/Notifier.screen.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/mobile/src/screens/ChannelList/ChannelList.screen.tsx b/packages/mobile/src/screens/ChannelList/ChannelList.screen.tsx index 5a558bcdb0..d6ff699637 100644 --- a/packages/mobile/src/screens/ChannelList/ChannelList.screen.tsx +++ b/packages/mobile/src/screens/ChannelList/ChannelList.screen.tsx @@ -18,10 +18,10 @@ import { initSelectors } from '../../store/init/init.selectors' export const ChannelListScreen: FC = () => { const dispatch = useDispatch() - /* + /* * Notify user about incoming lack of backwards compatiblity. * This should be removed in the next major release of the application (2.x) - * + * * https://github.com/TryQuiet/quiet/issues/1980 */ useEffect(() => { diff --git a/packages/mobile/src/screens/Notifier/Notifier.screen.tsx b/packages/mobile/src/screens/Notifier/Notifier.screen.tsx index fa3d49334d..12f5bb3530 100644 --- a/packages/mobile/src/screens/Notifier/Notifier.screen.tsx +++ b/packages/mobile/src/screens/Notifier/Notifier.screen.tsx @@ -14,7 +14,7 @@ export const NotifierScreen: FC = () => { const helpline = useCallback(async () => { const link = 'mailto:help@quiet.chat' - await Linking.openURL(link); + await Linking.openURL(link) }, []) return (