diff options
-rw-r--r-- | src/components/notifications/Notification.tsx | 6 | ||||
-rw-r--r-- | src/types/types.ts | 2 |
2 files changed, 3 insertions, 5 deletions
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<NotificationProps> = (props) => { const [avatar, setAvatar] = useState<string | undefined>(undefined); const [momentURI, setMomentURI] = useState<string | undefined>(undefined); - const isSystemNotification = - username === 'Tagg' && notification_type === 'PROF_VIST'; useEffect(() => { (async () => { @@ -210,7 +208,7 @@ const Notification: React.FC<NotificationProps> = (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<NotificationProps> = (props) => { } /> </TouchableWithoutFeedback> - {isSystemNotification ? ( + {notification_type === 'SYSTEM_MSG' ? ( // Only verbage <View style={styles.contentContainer}> <Text style={styles.actorName}>{verbage}</Text> 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; |