minor typo

This commit is contained in:
Felix Albrigtsen 2022-04-23 15:18:42 +02:00
parent 2677793b28
commit c9bf8b4f8f
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export default function ProfilePage(props) {
<Box> <Box>
<h3><b>Name: </b> {user.name}</h3> <h3><b>Name: </b> {user.name}</h3>
<h3><b>Email: </b> {user.email}</h3> <h3><b>Email: </b> {user.email}</h3>
<h3><b>Role: </b> {props.login.isManager() ? "Manager" : "Administrator"}</h3> <h3><b>Role: </b> {user.isManager ? "Manager" : "Administrator"}</h3>
<h3><b>Picture: </b> <img src={user.imgURL} alt="Your profile"></img></h3> <h3><b>Picture: </b> <img src={user.imgURL} alt="Your profile"></img></h3>
</Box> </Box>
</div> </div>