diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-04 13:32:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 13:32:01 -0400 |
commit | 9d3fdd9324d03e2f2bafbe2b0fe9f18607bfdbd4 (patch) | |
tree | dbe76b5c6f65867bdc414694e6d19dcd88056803 /src/screens/main/NotificationsScreen.tsx | |
parent | 1441ef007549f24a292317f1e67c0de63cacbd2b (diff) | |
parent | 355829d9983b839db342881011cc3fe9ff3792f4 (diff) |
Merge pull request #396 from ankit-thanekar007/tma-822-empty-inbox
[TMA-822] Empty Inbox Graphic
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 3efd9af8..9fbc4cfe 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -28,7 +28,7 @@ import { import {RootState} from '../../store/rootReducer'; import {NotificationType, ScreenType} from '../../types'; import {getDateAge, normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; -import EmptyNotificationView from './notification/EmptyNotificationView'; +import EmptyContentView from '../../components/common/EmptyContentView'; const NotificationsScreen: React.FC = () => { const {newNotificationReceived} = useSelector( @@ -304,7 +304,7 @@ const NotificationsScreen: React.FC = () => { extraData={requestLimit} ListEmptyComponent={ <View style={styles.emptyViewContainer}> - <EmptyNotificationView /> + <EmptyContentView viewType={'Notification'} /> </View> } /> |