import { MapPin } from 'lucide-react'; interface PersonalLocationDisplayProps { personalLocation: string | null | undefined; } export function PersonalLocationDisplay({ personalLocation }: PersonalLocationDisplayProps) { // get_filtered_profile() already handles privacy - if personalLocation is present, it's viewable if (!personalLocation) { return null; } return (
{personalLocation}
); }