Skip to content

Commit

Permalink
always display admin navbar link (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Apr 26, 2024
1 parent bfb0e41 commit 9facae8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/app/content/display/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import UserService from '../../service/user-service';

const Header: FC = () => {
const username = UserService.getUsername();
const isAdmin = UserService.hasRole([Roles.TICDI_ADMIN]);
// const isAdmin = UserService.hasRole([Roles.TICDI_ADMIN]);
const isAdmin = true;

return (
<header className="header">
Expand Down

0 comments on commit 9facae8

Please sign in to comment.