diff options
Diffstat (limited to 'components/project')
| -rw-r--r-- | components/project/ProjectDashboard.tsx | 4 | ||||
| -rw-r--r-- | components/project/ProjectNav.tsx | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/components/project/ProjectDashboard.tsx b/components/project/ProjectDashboard.tsx index 581b7b95..12515903 100644 --- a/components/project/ProjectDashboard.tsx +++ b/components/project/ProjectDashboard.tsx @@ -348,10 +348,10 @@ export function ProjectDashboard({ projectId }: ProjectDashboardProps) { <UserPlus className="h-4 w-4 mr-2" /> Add Member </Button> - <Button variant="outline"> + {/* <Button variant="outline"> <Settings className="h-4 w-4 mr-2" /> Settings - </Button> + </Button> */} </div> )} </div> diff --git a/components/project/ProjectNav.tsx b/components/project/ProjectNav.tsx index c62f760e..1654c30d 100644 --- a/components/project/ProjectNav.tsx +++ b/components/project/ProjectNav.tsx @@ -89,13 +89,13 @@ export function ProjectNav({ projectId }: ProjectNavProps) { active: pathname?.includes('stats') , requireRole: ['owner'], }, - { - label: 'Settings', - icon: Settings, - href: `/evcp/data-room/${projectId}/settings`, - active: pathname?.includes('settiings') , - requireRole: ['owner', 'admin'], - }, + // { + // label: 'Settings', + // icon: Settings, + // href: `/evcp/data-room/${projectId}/settings`, + // active: pathname?.includes('settiings') , + // requireRole: ['owner', 'admin'], + // }, ]; const visibleNavItems = navItems.filter(item => |
