From a9f03ecd6f84f7b8713d73943471b878d59c5132 Mon Sep 17 00:00:00 2001 From: Luis Felipe Risch <lfr20@inf.ufpr.br> Date: Tue, 30 Mar 2021 12:07:15 -0300 Subject: [PATCH] Commented a part of the code, because its giving error in this api --- src/Components/Notifications.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Notifications.js b/src/Components/Notifications.js index 09b1f99b..d2077e6d 100644 --- a/src/Components/Notifications.js +++ b/src/Components/Notifications.js @@ -123,7 +123,7 @@ export default function Notification (props) { </div> { notifications.map( (notification) => - <ActivityListItem + {/* <ActivityListItem onMenuBar={true} avatar = {notification.owner.avatar ? apiDomain + notification.owner.avatar : null} activity = {notification.activity} @@ -134,7 +134,7 @@ export default function Notification (props) { ownerHref = {'/usuario-publico/' + notification.owner.id} recipientName = {notification.recipient.name} recipientHref = {getRecipientHref(notification)} - /> + /> */} ) } <div style={{padding : "0 15px", borderTop : "1px solid #dadada"}}> -- GitLab