diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-20 14:40:18 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-20 14:40:18 -0400 |
commit | 419681ad0d832808caec5252fb65aa154b0e4ae2 (patch) | |
tree | ec54f924bdf3b1f16123a215cb04f35b4ce62247 /src/components | |
parent | 098969cbd94fd74fe00ed974d9c019ad434a2f8a (diff) |
created SYSTEM_MSG
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/notifications/Notification.tsx | 6 |
1 files changed, 2 insertions, 4 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> |