Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Nov 7, 2023
1 parent 11fc395 commit 04b4d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/src/screens/Notifier/Notifier.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const NotifierScreen: FC = () => {

const helpline = useCallback(async () => {
const link = 'mailto:[email protected]'
await Linking.openURL(link);
await Linking.openURL(link)
}, [])

return (
Expand Down

0 comments on commit 04b4d54

Please sign in to comment.