diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-07 19:48:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 19:48:09 -0400 |
commit | eb1a01196ae6a999ac73e146cf5286fddc0454e3 (patch) | |
tree | 67986d4d54bbbd6a6d7a1e9abe305dd424af0efd /src/screens/main/NotificationsScreen.tsx | |
parent | ae61e1602149a881483631239ea2507a58378cc4 (diff) | |
parent | a3bae91f19400373dc396fc60d5f29d3b4506d23 (diff) |
Merge pull request #407 from brian-tagg/newFeatureMessaging
[TMA-837] New feature messaging
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index 9fbc4cfe..7e2f082c 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -20,7 +20,7 @@ import {useDispatch, useSelector} from 'react-redux'; import FindFriendsBlueIcon from '../../assets/icons/findFriends/find-friends-blue-icon.svg'; import {TabsGradient} from '../../components'; import {Notification} from '../../components/notifications'; -import {PrivateAccountsPrompt} from '../../components/notifications/NotificationPrompts'; +import {NewChatPrompt} from '../../components/notifications/NotificationPrompts'; import { loadUserNotifications, updateNewNotificationReceived, @@ -297,7 +297,7 @@ const NotificationsScreen: React.FC = () => { renderItem={renderNotification} renderSectionHeader={renderSectionHeader} renderSectionFooter={renderSectionFooter} - ListHeaderComponent={<PrivateAccountsPrompt />} + ListHeaderComponent={<NewChatPrompt />} refreshControl={ <RefreshControl refreshing={refreshing} onRefresh={onRefresh} /> } |