// Notification message constants for user-facing notifications // Add new notification messages here as needed export const NOTIFY_PERSON_HIDDEN = { title: "Person Outside Your Network", message: "This person is not visible to you.", }; export const NOTIFY_UNKNOWN_PERSON = { title: "Unidentified Person", message: "Nobody specific was recognized.", }; export const NOTIFY_CONTACT_LOADING_ISSUE = { title: "Contact Loading Issue", message: "Some contact information may be unavailable.", }; export const NOTIFY_FEED_LOADING_ISSUE = { title: "Feed Loading Issue", message: "Some feed data may be unavailable. Pull to refresh.", }; export const NOTIFY_CONFIRMATION_ERROR = { title: "Error", message: "There was a problem submitting the confirmation.", };