diff options
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r-- | src/screens/main/NotificationsScreen.tsx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx index ba52d988..da1e7a2b 100644 --- a/src/screens/main/NotificationsScreen.tsx +++ b/src/screens/main/NotificationsScreen.tsx @@ -96,13 +96,7 @@ const NotificationsScreen: React.FC = () => { }, [lastViewed, notifications]); const renderNotification = ({item}: {item: NotificationType}) => ( - <Notification - item={item} - userXId={ - item.actor.id === loggedInUser.userId ? undefined : item.actor.id - } - screenType={ScreenType.Notifications} - /> + <Notification item={item} screenType={ScreenType.Notifications} /> ); const renderSectionHeader = ({section: {title, data}}) => |