diff --git a/plane-src/apps/web/core/components/workspace/sidebar/user-menu-item.tsx b/plane-src/apps/web/core/components/workspace/sidebar/user-menu-item.tsx
index 02aa128..5cc4e6d 100644
--- a/plane-src/apps/web/core/components/workspace/sidebar/user-menu-item.tsx
+++ b/plane-src/apps/web/core/components/workspace/sidebar/user-menu-item.tsx
@@ -14,6 +14,7 @@ import type { EUserWorkspaceRoles } from "@plane/types";
// components
import { SidebarNavItem } from "@/components/sidebar/sidebar-navigation";
import { NotificationAppSidebarOption } from "@/components/workspace-notifications/notification-app-sidebar-option";
+import { openWorkspaceNotificationsModal } from "@/components/workspace-notifications/notifications-modal.utils";
// hooks
import { useAppTheme } from "@/hooks/store/use-app-theme";
import { useUserPermissions } from "@/hooks/store/user";
@@ -54,6 +55,25 @@ export const SidebarUserMenuItem = observer(function SidebarUserMenuItem(props:
}
};
+ const handleNotificationsClick = () => {
+ handleLinkClick();
+ openWorkspaceNotificationsModal();
+ };
+
+ if (item.key === "notifications") {
+ return (
+
+ );
+ }
+
return (