aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/notifications')
-rw-r--r--src/components/notifications/Notification.tsx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx
index e40153ea..d40c65ed 100644
--- a/src/components/notifications/Notification.tsx
+++ b/src/components/notifications/Notification.tsx
@@ -113,8 +113,6 @@ const Notification: React.FC<NotificationProps> = (props) => {
comment_id = notification_object?.parent_comment?.comment_id;
}
- console.log('Problem');
-
// Now find the moment we need to display
let moment: MomentType | undefined = loggedInUserMoments?.find(
(m) => m.moment_id === moment_id,
@@ -128,7 +126,6 @@ const Notification: React.FC<NotificationProps> = (props) => {
let moments: MomentType[] = [];
try {
if (!userXInStore(state, screenType, id)) {
- console.log('Problem');
const token = await getTokenOrLogout(dispatch);
moments = await loadMoments(id, token);
} else {
@@ -143,7 +140,6 @@ const Notification: React.FC<NotificationProps> = (props) => {
userXId = id;
}
- console.log(moment);
//Now if moment was found, navigate to the respective moment
if (moment) {
if (notification_object?.parent_comment) {