[WEB-666] chore: rename View profile to My activity. (#3906)

This commit is contained in:
Prateek Shourya 2024-03-08 17:37:01 +05:30 committed by GitHub
parent deb5ac0578
commit f5151ae717
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,8 +24,8 @@ const userLinks = (workspaceSlug: string, userId: string) => [
icon: Mails, icon: Mails,
}, },
{ {
key: "view_profile", key: "my_activity",
name: "View profile", name: "My activity",
href: `/${workspaceSlug}/profile/${userId}`, href: `/${workspaceSlug}/profile/${userId}`,
icon: CircleUserRound, icon: CircleUserRound,
}, },
@ -38,7 +38,7 @@ const userLinks = (workspaceSlug: string, userId: string) => [
]; ];
const profileLinks = (workspaceSlug: string, userId: string) => [ const profileLinks = (workspaceSlug: string, userId: string) => [
{ {
name: "View profile", name: "My activity",
icon: UserCircle2, icon: UserCircle2,
link: `/${workspaceSlug}/profile/${userId}`, link: `/${workspaceSlug}/profile/${userId}`,
}, },