diff --git a/web/app/profile/sidebar.tsx b/web/app/profile/sidebar.tsx
index 07fd746c6..59e3daa48 100644
--- a/web/app/profile/sidebar.tsx
+++ b/web/app/profile/sidebar.tsx
@@ -9,13 +9,13 @@ import {
ChevronLeft,
LogOut,
MoveLeft,
- Plus,
- UserPlus,
Activity,
Bell,
CircleUser,
KeyRound,
Settings2,
+ CirclePlus,
+ Mails,
} from "lucide-react";
// plane imports
import { PROFILE_ACTION_LINKS } from "@plane/constants";
@@ -35,14 +35,14 @@ import { usePlatformOS } from "@/hooks/use-platform-os";
const WORKSPACE_ACTION_LINKS = [
{
key: "create_workspace",
- Icon: Plus,
- label: "Create workspace",
+ Icon: CirclePlus,
+ i18n_label: "create_workspace",
href: "/create-workspace",
},
{
key: "invitations",
- Icon: UserPlus,
- label: "Invitations",
+ Icon: Mails,
+ i18n_label: "workspace_invites",
href: "/invitations",
},
];
@@ -243,8 +243,8 @@ export const ProfileLayoutSidebar = observer(() => {
sidebarCollapsed ? "justify-center" : ""
}`}
>
- {}
- {!sidebarCollapsed && t(link.key)}
+ {}
+ {!sidebarCollapsed && t(link.i18n_label)}