diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-27 16:16:59 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-07-27 16:16:59 -0400 |
commit | c0770f5fbc8f4a276d45f4336c3733748ed460f4 (patch) | |
tree | 8de8893348eec8c0fe04e5d964ac74b78b441d35 | |
parent | 611a3a545aa11880481bf4ae1a21aaf370cdb090 (diff) |
Lint
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index 34888e5b..55dd9051 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -1,4 +1,5 @@ import AsyncStorage from '@react-native-community/async-storage'; +import PushNotificationIOS from '@react-native-community/push-notification-ios'; import {useFocusEffect, useNavigation} from '@react-navigation/native'; import moment from 'moment'; import React, {useCallback, useEffect, useState} from 'react'; @@ -21,7 +22,6 @@ import FindFriendsBlueIcon from '../../assets/icons/findFriends/find-friends-blu import {TabsGradient} from '../../components'; import EmptyContentView from '../../components/common/EmptyContentView'; import {Notification} from '../../components/notifications'; -import {NewChatPrompt} from '../../components/notifications/NotificationPrompts'; import { loadUserNotifications, updateNewNotificationReceived, @@ -29,7 +29,6 @@ import { import {RootState} from '../../store/rootReducer'; import {NotificationType, ScreenType} from '../../types'; import {getDateAge, normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; -import PushNotificationIOS from '@react-native-community/push-notification-ios'; const NotificationsScreen: React.FC = () => { const {newNotificationReceived} = useSelector( |