Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
UserProfile,
} from '~/libs/core'
import { ProfilePicture, useCheckIsMobile } from '~/libs/shared'
import { Tooltip } from '~/libs/ui'

import { AddButton, EditMemberPropertyBtn } from '../../components'
import { EDIT_MODE_QUERY_PARAM, profileEditModes } from '../../config'
Expand Down Expand Up @@ -109,9 +110,15 @@ const ProfileHeader: FC<ProfileHeaderProps> = (props: ProfileHeaderProps) => {

function renderActivityStatus(): JSX.Element {
return (
<div className={styles.activeBadge}>
Active
</div>
<Tooltip
content='You have been active in the past 3 months. (this information is visible to you only)'
triggerOn='hover'
place='top'
>
<div className={styles.activeBadge}>
Active
</div>
</Tooltip>
)
}

Expand Down
Loading