From 419681ad0d832808caec5252fb65aa154b0e4ae2 Mon Sep 17 00:00:00 2001 From: Ivan Chen Date: Tue, 20 Apr 2021 14:40:18 -0400 Subject: created SYSTEM_MSG --- src/components/notifications/Notification.tsx | 6 ++---- src/types/types.ts | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/components/notifications/Notification.tsx b/src/components/notifications/Notification.tsx index d66ca45e..3cc1c7f1 100644 --- a/src/components/notifications/Notification.tsx +++ b/src/components/notifications/Notification.tsx @@ -57,8 +57,6 @@ const Notification: React.FC = (props) => { const [avatar, setAvatar] = useState(undefined); const [momentURI, setMomentURI] = useState(undefined); - const isSystemNotification = - username === 'Tagg' && notification_type === 'PROF_VIST'; useEffect(() => { (async () => { @@ -210,7 +208,7 @@ const Notification: React.FC = (props) => { const isOwnProfile = id === loggedInUser.userId; const navigateToProfile = async () => { - if (isSystemNotification) { + if (notification_type === 'SYSTEM_MSG') { return; } if (!userXInStore(state, screenType, id)) { @@ -236,7 +234,7 @@ const Notification: React.FC = (props) => { } /> - {isSystemNotification ? ( + {notification_type === 'SYSTEM_MSG' ? ( // Only verbage {verbage} diff --git a/src/types/types.ts b/src/types/types.ts index b8746eea..8d7f4aed 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -253,7 +253,7 @@ export type TypeOfNotification = // notification_object is undefined | 'INVT_ONBRD' // notification_object is undefined - | 'PROF_VIST'; + | 'SYSTEM_MSG'; export type UniversityBadge = { id: number; -- cgit v1.2.3-70-g09d2