aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/notifications/Notification.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx
index 64454bfc..c2c6c4e4 100644
--- a/src/components/notifications/Notification.tsx
+++ b/src/components/notifications/Notification.tsx
@@ -151,20 +151,19 @@ const Notification: React.FC<NotificationProps> = (props) => {
//STEP 3
if (moment) {
- //Now if moment was found, navigate to the respective moment
if (reply) {
dispatch(updateReplyPosted(reply));
}
navigation.push('IndividualMoment', {
moment,
- userXId, // we're only viewing our own moment here
+ userXId,
screenType,
});
setTimeout(() => {
navigation.push('MomentCommentsScreen', {
- moment_id: moment_id,
+ moment_id,
screenType,
- comment_id: comment_id,
+ comment_id,
});
}, 500);
}