diff options
author | Shravya Ramesh <37447613+shravyaramesh@users.noreply.github.com> | 2021-03-30 12:30:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 12:30:15 -0700 |
commit | 6b3ab4ccb9112e469f2333285c4e58a8c934cff3 (patch) | |
tree | 84b4b9a6fa04cff39fb9e3bdf0ebe29910d08e0f /src/screens/main/NotificationsScreen.tsx | |
parent | 357ac758abf9a2a2364b265051743bbbc50893a6 (diff) | |
parent | 6250ae2a6936bdb8e4b1cca538640fbb0d8c4c48 (diff) |
Merge branch 'master' into tma718-move-invite-friends
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index 6fca679f..48e89f7a 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -18,6 +18,7 @@ import {checkPermission} from 'react-native-contacts'; import {TouchableOpacity} from 'react-native-gesture-handler'; import {SafeAreaView} from 'react-native-safe-area-context'; import {useDispatch, useSelector} from 'react-redux'; +import {PrivateAccountsPrompt} from '../../components/notifications/NotificationPrompts'; import {TabsGradient} from '../../components'; import { InviteFriendsPrompt, @@ -299,7 +300,7 @@ const NotificationsScreen: React.FC = () => { renderItem={renderNotification} renderSectionHeader={renderSectionHeader} renderSectionFooter={renderSectionFooter} - ListHeaderComponent={<InviteFriendsPrompt />} + ListHeaderComponent={<PrivateAccountsPrompt />} refreshControl={ <RefreshControl refreshing={refreshing} onRefresh={onRefresh} /> } |