diff --git a/web/components/profile-about.tsx b/web/components/profile-about.tsx index eab2611c..7b0a27f4 100644 --- a/web/components/profile-about.tsx +++ b/web/components/profile-about.tsx @@ -1043,13 +1043,35 @@ function LastOnline(props: {lastOnlineTime?: string}) { const {lastOnlineTime} = props if (!lastOnlineTime) return null return ( - } - text={t('profile.last_online', 'Active {time}', { - time: fromNow(lastOnlineTime, true, t, locale), - })} - testId="profile-about-last-online" - /> + <> + +
+ +
+ +
+ {t('profile.activity', 'Activity')} +
+
+ {t('profile.last_online', 'Active {time}', { + time: fromNow(lastOnlineTime, true, t, locale), + })} +
+ +
+ ) }