diff --git a/packages/pl-fe/src/features/notifications/components/notification.tsx b/packages/pl-fe/src/features/notifications/components/notification.tsx index 8f386c65d..7bcf23b8f 100644 --- a/packages/pl-fe/src/features/notifications/components/notification.tsx +++ b/packages/pl-fe/src/features/notifications/components/notification.tsx @@ -443,40 +443,36 @@ const Notification: React.FC = (props) => { ) ); + const statusInfo = ; + return (
-
-
- -
- -
+ {!['mention', 'status'].includes(notification.type) ? ( + +
+ {statusInfo} +
- {!['mention', 'status'].includes(notification.type) && ( -
- - - -
- )} -
-
+
+ + + +
+ + ) : statusInfo} -
- {renderContent()} -
-
+ {renderContent()}
);