{currentUser && !isCurrentUser && isHiddenFromMe && (
{t(
'profile_grid.hidden_notice',
"You hid this person, so they don't appear in your search results.",
)}
)}
{currentUser && isCurrentUser && disabled && (
{t(
'profile.header.disabled_notice',
'You disabled your profile, so no one else can access it.',
)}
)}
{profile.pinned_url && (
)}
{/*{!isCurrentUser && }*/}
{simpleView ? (
{user.name}
) : (
{user.name}
)}
{profile.keywords?.map(capitalizePure)?.map((tag, i) => (
{tag.trim()}
))}
{profile.headline && (
)}
)
}
export function ProfileHeaderActions(props: {
user: User
profile: Profile
starredUserIds: string[]
refreshStars: () => Promise