Skip to content

Commit

Permalink
Remove items from navigation that are not implemented yet
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-emilius committed Jul 30, 2024
1 parent 765b5aa commit d708cf9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/src/app/layout/AuthenticatedArea/AuthenticatedArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ const links: Array<{
icon: any
roles: string[] | undefined
}> = [
{ link: '/dashboard', label: 'Dashboard', icon: NewspaperClipping, roles: undefined },
/*{ link: '/dashboard', label: 'Dashboard', icon: NewspaperClipping, roles: undefined },
{
link: '/submit-application/pick-topic',
label: 'Submit Application',
icon: PaperPlaneTilt,
roles: undefined,
},
},*/
{
link: '/management/thesis-applications',
label: 'Review Applications v1',
label: 'Review Applications',
icon: Scroll,
roles: ['admin', 'advisor', 'supervisor'],
},
{
/*{
link: '/applications',
label: 'Review Applications v2',
icon: Scroll,
Expand All @@ -52,7 +52,7 @@ const links: Array<{
icon: FolderSimplePlus,
roles: ['admin', 'advisor', 'supervisor'],
},
{ link: '/theses', label: 'Thesis Overview', icon: Kanban, roles: ['admin', 'supervisor'] },
{ link: '/theses', label: 'Thesis Overview', icon: Kanban, roles: ['admin', 'supervisor'] },*/
]

const SpinningLoader = () => (
Expand Down Expand Up @@ -124,14 +124,14 @@ const AuthenticatedArea = (props: PropsWithChildren<IAuthenticatedAreaProps>) =>
))}
</AppShell.Section>
<AppShell.Section>
<Link
{/*<Link
to='/settings/my-information'
className={classes.link}
data-active={location.pathname.startsWith('/settings/my-information') || undefined}
>
<User className={classes.linkIcon} size={32} />
<span>My Information</span>
</Link>
</Link>*/}

<Link to='/logout' className={classes.link}>
<SignOut className={classes.linkIcon} size={32} />
Expand Down

0 comments on commit d708cf9

Please sign in to comment.